We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 699c496 + 9b6fed0 commit a814d81Copy full SHA for a814d81
src/ReverseMarkdown.Test/ConverterTests.cs
@@ -6,6 +6,15 @@ namespace ReverseMarkdown.Test
6
{
7
public class ConverterTests
8
9
+
10
+ [Fact]
11
+ public void WhenThereIsAsideTag()
12
+ {
13
+ const string html = @"<aside>This text is in an aside tag.</aside> This text appears after aside.";
14
+ string expected = $"{Environment.NewLine}This text is in an aside tag.{Environment.NewLine} This text appears after aside.";
15
+ CheckConversion(html, expected);
16
+ }
17
18
[Fact]
19
public void WhenThereIsHtmlLink_ThenConvertToMarkdownLink()
20
0 commit comments