Skip to content

Commit 87b651c

Browse files
committed
Docs changes [skip ci]
1 parent f06581c commit 87b651c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ If you have used and benefitted from this library. Please feel free to buy me a
1919
Install the package from NuGet using `Install-Package ReverseMarkdown` or clone the repository and built it yourself.
2020

2121
<!-- snippet: Usage -->
22-
<a id='snippet-Usage'></a>
22+
<a id='snippet-usage'></a>
2323
```cs
2424
var converter = new ReverseMarkdown.Converter();
2525

2626
string html = "This a sample <strong>paragraph</strong> from <a href=\"http://test.com\">my site</a>";
2727

2828
string result = converter.Convert(html);
2929
```
30-
<sup><a href='/src/ReverseMarkdown.Test/Snippets.cs#L11-L19' title='Snippet source file'>snippet source</a> | <a href='#snippet-Usage' title='Start of snippet'>anchor</a></sup>
30+
<sup><a href='/src/ReverseMarkdown.Test/Snippets.cs#L11-L19' title='Snippet source file'>snippet source</a> | <a href='#snippet-usage' title='Start of snippet'>anchor</a></sup>
3131
<!-- endSnippet -->
3232

3333
Will result in:
@@ -43,7 +43,7 @@ This a sample **paragraph** from [my site](http://test.com)
4343
The conversion can be customized:
4444

4545
<!-- snippet: UsageWithConfig -->
46-
<a id='snippet-UsageWithConfig'></a>
46+
<a id='snippet-usagewithconfig'></a>
4747
```cs
4848
var config = new ReverseMarkdown.Config
4949
{
@@ -59,7 +59,7 @@ var config = new ReverseMarkdown.Config
5959

6060
var converter = new ReverseMarkdown.Converter(config);
6161
```
62-
<sup><a href='/src/ReverseMarkdown.Test/Snippets.cs#L27-L43' title='Snippet source file'>snippet source</a> | <a href='#snippet-UsageWithConfig' title='Start of snippet'>anchor</a></sup>
62+
<sup><a href='/src/ReverseMarkdown.Test/Snippets.cs#L27-L43' title='Snippet source file'>snippet source</a> | <a href='#snippet-usagewithconfig' title='Start of snippet'>anchor</a></sup>
6363
<!-- endSnippet -->
6464

6565
## Configuration options

README.source.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ If you have used and benefitted from this library. Please feel free to buy me a
1212
Install the package from NuGet using `Install-Package ReverseMarkdown` or clone the repository and build it yourself.
1313

1414
<!-- snippet: Usage -->
15-
<a id='snippet-Usage'></a>
15+
<a id='snippet-usage'></a>
1616
```cs
1717
var converter = new ReverseMarkdown.Converter();
1818

1919
string html = "This a sample <strong>paragraph</strong> from <a href=\"http://test.com\">my site</a>";
2020

2121
string result = converter.Convert(html);
2222
```
23-
<sup><a href='/src/ReverseMarkdown.Test/Snippets.cs#L11-L19' title='Snippet source file'>snippet source</a> | <a href='#snippet-Usage' title='Start of snippet'>anchor</a></sup>
23+
<sup><a href='/src/ReverseMarkdown.Test/Snippets.cs#L11-L19' title='Snippet source file'>snippet source</a> | <a href='#snippet-usage' title='Start of snippet'>anchor</a></sup>
2424
<!-- endSnippet -->
2525

2626
Will result in:
@@ -36,7 +36,7 @@ This a sample **paragraph** from [my site](http://test.com)
3636
The conversion can also be customized:
3737

3838
<!-- snippet: UsageWithConfig -->
39-
<a id='snippet-UsageWithConfig'></a>
39+
<a id='snippet-usagewithconfig'></a>
4040
```cs
4141
var config = new ReverseMarkdown.Config
4242
{
@@ -52,7 +52,7 @@ var config = new ReverseMarkdown.Config
5252

5353
var converter = new ReverseMarkdown.Converter(config);
5454
```
55-
<sup><a href='/src/ReverseMarkdown.Test/Snippets.cs#L27-L43' title='Snippet source file'>snippet source</a> | <a href='#snippet-UsageWithConfig' title='Start of snippet'>anchor</a></sup>
55+
<sup><a href='/src/ReverseMarkdown.Test/Snippets.cs#L27-L43' title='Snippet source file'>snippet source</a> | <a href='#snippet-usagewithconfig' title='Start of snippet'>anchor</a></sup>
5656
<!-- endSnippet -->
5757

5858
## Configuration options

0 commit comments

Comments
 (0)