Skip to content

Commit e5eaecd

Browse files
committed
v0.4.3
1 parent 52e5d47 commit e5eaecd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<Version>0.4.2</Version>
4+
<Version>0.4.3</Version>
55
</PropertyGroup>
66

77
<PropertyGroup>

src/RazorBlade.Tests/HtmlTemplateTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class HtmlTemplateTests
1414
[TestCase("foo", "foo")]
1515
[TestCase("&foo", "&amp;foo")]
1616
[TestCase("foo&", "foo&amp;")]
17+
[TestCase("foo's", "foo&#x27;s")]
1718
[TestCase("foo & bar < baz > foo\"bar", "foo &amp; bar &lt; baz &gt; foo&quot;bar")]
1819
public void should_escape_special_characters(string input, string expectedOutput)
1920
{

0 commit comments

Comments
 (0)