@@ -9,31 +9,31 @@ ReverseMarkdown is a Html to Markdown (http://daringfireball.net/projects/markdo
99Install the package from NuGet using ` Install-Package ReverseMarkdown ` or clone the repository and built it yourself.
1010
1111<!-- snippet: Usage -->
12- <a id =' c629ba0e ' ></a >
12+ <a id =' snippet-usage ' ></a >
1313``` cs
1414var converter = new ReverseMarkdown .Converter ();
1515
1616string html = " This a sample <strong>paragraph</strong> from <a href=\" http://test.com\" >my site</a>" ;
1717
1818string result = converter .Convert (html );
1919```
20- <sup ><a href =' /src/ReverseMarkdown.Test/Snippets.cs#L12-L20 ' title =' Snippet source file ' >snippet source</a > | <a href =' #c629ba0e ' title =' Start of snippet ' >anchor</a ></sup >
20+ <sup ><a href =' /src/ReverseMarkdown.Test/Snippets.cs#L12-L20 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-usage ' title =' Start of snippet ' >anchor</a ></sup >
2121<!-- endSnippet -->
2222
2323Will result in:
2424
2525<!-- snippet: Snippets.Usage.verified.txt -->
26- <a id =' 53861c11 ' ></a >
26+ <a id =' snippet-Snippets.Usage.verified.txt ' ></a >
2727``` txt
2828This a sample **paragraph** from [my site](http://test.com)
2929```
30- <sup ><a href =' /src/ReverseMarkdown.Test/Snippets.Usage.verified.txt#L1-L1 ' title =' Snippet source file ' >snippet source</a > | <a href =' #53861c11 ' title =' Start of snippet ' >anchor</a ></sup >
30+ <sup ><a href =' /src/ReverseMarkdown.Test/Snippets.Usage.verified.txt#L1-L1 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-Snippets.Usage.verified.txt ' title =' Start of snippet ' >anchor</a ></sup >
3131<!-- endSnippet -->
3232
3333The conversion can be customized:
3434
3535<!-- snippet: UsageWithConfig -->
36- <a id =' ed688b8d ' ></a >
36+ <a id =' snippet-usagewithconfig ' ></a >
3737``` cs
3838var config = new ReverseMarkdown .Config
3939{
@@ -49,7 +49,7 @@ var config = new ReverseMarkdown.Config
4949
5050var converter = new ReverseMarkdown .Converter (config );
5151```
52- <sup ><a href =' /src/ReverseMarkdown.Test/Snippets.cs#L28-L44 ' title =' Snippet source file ' >snippet source</a > | <a href =' #ed688b8d ' title =' Start of snippet ' >anchor</a ></sup >
52+ <sup ><a href =' /src/ReverseMarkdown.Test/Snippets.cs#L28-L44 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-usagewithconfig ' title =' Start of snippet ' >anchor</a ></sup >
5353<!-- endSnippet -->
5454
5555## Configuration options
0 commit comments