File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33# CommonMark.NET
44
5- Implementation of [ CommonMark] [ 1] specification (passes tests from version 0.27) in C# for converting Markdown documents to HTML.
5+ Implementation of [ CommonMark] [ 1 ] specification (passes tests from version 0.27) in C# for converting Markdown documents to HTML.
66
7- The current version of the library is also [ available on NuGet] [ nuget] .
7+ The current version of the library is also [ available on NuGet] [ nuget ] .
88
99## Usage
1010
@@ -22,7 +22,7 @@ To convert data stored in a string:
2222var result = CommonMark .CommonMarkConverter .Convert (" **Hello world!**" );
2323```
2424
25- See [ wiki] [ extensibility] for an example how the parser can be extended with additional logic.
25+ See the [ wiki] [ extensibility ] for an example how the parser can be extended with additional logic.
2626
2727** Important:** The converter [ does not include any HTML sanitizing] [ XSS ] .
2828
@@ -81,7 +81,7 @@ cannot be caught and will bring down the entire process.
8181
8282## References
8383
84- This library is based on a port of the reference implementation in C, available on [ jgm/cmark repo] [ 2] .
84+ This library is based on a port of the reference implementation in C, available on [ jgm/cmark repo] [ 2 ] .
8585It follows the same approach - the source is parsed into a syntax tree that can be used to add custom
8686processing if the application needs it and then formatted into HTML.
8787
You can’t perform that action at this time.
0 commit comments