Skip to content

Commit f3d5453

Browse files
authored
Merge pull request #115 from iignatov/patch-1
Fixed a few links in the README.
2 parents 30de983 + b890dd4 commit f3d5453

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
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:
2222
var 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].
8585
It follows the same approach - the source is parsed into a syntax tree that can be used to add custom
8686
processing if the application needs it and then formatted into HTML.
8787

0 commit comments

Comments
 (0)