kjdev / hoextdown

Hoextdown is an extension to Hoedown
MIT License
23 stars 15 forks source link

Add special attributes for paragraphs. #34

Closed NEricN closed 7 years ago

NEricN commented 7 years ago

This change also forces the @list specifier for list-level attributes. Before, any string could have been used and it would have been interpreted as a list-level special attribute.

Paragraphs that need special attributes must have the @paragraph identifier in the beginning of their special attributes. This was used because it is very common in text to have brackets, and would lead to false positives otherwise.

codecov-io commented 7 years ago

Current coverage is 62.17% (diff: 78.12%)

Merging #34 into master will increase coverage by 0.07%

@@             master        #34   diff @@
==========================================
  Files            14         14          
  Lines          3860       3876    +16   
  Methods         255        255          
  Messages          0          0          
  Branches       1037       1042     +5   
==========================================
+ Hits           2397       2410    +13   
+ Misses         1030       1028     -2   
- Partials        433        438     +5   

Powered by Codecov. Last update dddfca3...8af8af5

kjdev commented 7 years ago

Thanks.