Skip to content

Commit 1bcab8d

Browse files
committed
Update package references
1 parent 7a959f3 commit 1bcab8d

File tree

6 files changed

+14
-16
lines changed

6 files changed

+14
-16
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#L12-L20' 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#L28-L44' 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#L12-L20' 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#L28-L44' 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

src/ReverseMarkdown.Test/ConverterTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
namespace ReverseMarkdown.Test
99
{
10-
[UsesVerify]
1110
public class ConverterTests
1211
{
1312
private readonly ITestOutputHelper _testOutputHelper;

src/ReverseMarkdown.Test/ReverseMarkdown.Test.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
</PropertyGroup>
66
<ItemGroup>
77
<ProjectReference Include="..\ReverseMarkdown\ReverseMarkdown.csproj" />
8-
<PackageReference Include="MarkdownSnippets.MsBuild" Version="26.0.1">
8+
<PackageReference Include="MarkdownSnippets.MsBuild" Version="27.0.2">
99
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1010
<PrivateAssets>all</PrivateAssets>
1111
</PackageReference>
12-
<PackageReference Include="Verify.Xunit" Version="22.11.1" />
13-
<PackageReference Include="xunit" Version="2.6.4" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
12+
<PackageReference Include="Verify.Xunit" Version="24.1.0" />
13+
<PackageReference Include="xunit" Version="2.8.0" />
14+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
<PrivateAssets>all</PrivateAssets>
1717
</PackageReference>
18-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
18+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1919
</ItemGroup>
2020
<ItemGroup>
2121
<None Update="ConverterTests.When_Span_with_newline_Should_Convert_Properly.verified.md">

src/ReverseMarkdown.Test/Snippets.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using VerifyXunit;
44
using Xunit;
55

6-
[UsesVerify]
76
public class Snippets
87
{
98
[Fact]

src/ReverseMarkdown/ReverseMarkdown.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageTags>htmltomarkdown;html2markdown;converthtml;htmlconverter;html;converter;markdown</PackageTags>
1010
</PropertyGroup>
1111
<ItemGroup>
12-
<PackageReference Include="HtmlAgilityPack" Version="1.11.57" />
12+
<PackageReference Include="HtmlAgilityPack" Version="1.11.61" />
1313
</ItemGroup>
1414
<!--SourceLink specific settings-->
1515
<PropertyGroup>

0 commit comments

Comments
 (0)