You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,31 +9,31 @@ ReverseMarkdown is a Html to Markdown (http://daringfireball.net/projects/markdo
9
9
Install the package from NuGet using `Install-Package ReverseMarkdown` or clone the repository and built it yourself.
10
10
11
11
<!-- snippet: Usage -->
12
-
<aid='snippet-usage'></a>
12
+
<aid='c629ba0e'></a>
13
13
```cs
14
14
varconverter=newReverseMarkdown.Converter();
15
15
16
16
stringhtml="This a sample <strong>paragraph</strong> from <a href=\"http://test.com\">my site</a>";
17
17
18
18
stringresult=converter.Convert(html);
19
19
```
20
-
<sup><ahref='/src/ReverseMarkdown.Test/Snippets.cs#L12-L20'title='File snippet `usage` was extracted from'>snippet source</a> | <ahref='#snippet-usage'title='Navigate to start of snippet `usage`'>anchor</a></sup>
20
+
<sup><ahref='/src/ReverseMarkdown.Test/Snippets.cs#L12-L20'title='Snippet source file'>snippet source</a> | <ahref='#c629ba0e'title='Start of snippet'>anchor</a></sup>
21
21
<!-- endSnippet -->
22
22
23
23
Will result in:
24
24
25
25
<!-- snippet: Snippets.Usage.verified.txt -->
26
-
<aid='snippet-Snippets.Usage.verified.txt'></a>
26
+
<aid='53861c11'></a>
27
27
```txt
28
28
This a sample **paragraph** from [my site](http://test.com)
29
29
```
30
-
<sup><ahref='/src/ReverseMarkdown.Test/Snippets.Usage.verified.txt#L1-L1'title='File snippet `Snippets.Usage.verified.txt` was extracted from'>snippet source</a> | <ahref='#snippet-Snippets.Usage.verified.txt'title='Navigate to start of snippet `Snippets.Usage.verified.txt`'>anchor</a></sup>
30
+
<sup><ahref='/src/ReverseMarkdown.Test/Snippets.Usage.verified.txt#L1-L1'title='Snippet source file'>snippet source</a> | <ahref='#53861c11'title='Start of snippet'>anchor</a></sup>
31
31
<!-- endSnippet -->
32
32
33
33
The conversion can be customized:
34
34
35
35
<!-- snippet: UsageWithConfig -->
36
-
<aid='snippet-usagewithconfig'></a>
36
+
<aid='ed688b8d'></a>
37
37
```cs
38
38
varconfig=newReverseMarkdown.Config
39
39
{
@@ -49,7 +49,7 @@ var config = new ReverseMarkdown.Config
<sup><ahref='/src/ReverseMarkdown.Test/Snippets.cs#L28-L44'title='File snippet `usagewithconfig` was extracted from'>snippet source</a> | <ahref='#snippet-usagewithconfig'title='Navigate to start of snippet `usagewithconfig`'>anchor</a></sup>
52
+
<sup><ahref='/src/ReverseMarkdown.Test/Snippets.cs#L28-L44'title='Snippet source file'>snippet source</a> | <ahref='#ed688b8d'title='Start of snippet'>anchor</a></sup>
0 commit comments