Skip to content

Commit

Permalink
Handle xhtml version of tag as well
Browse files Browse the repository at this point in the history
  • Loading branch information
rgregg committed Dec 8, 2015
1 parent 3b67438 commit 9d49861
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions OSS/MarkdownDeep/MardownDeep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,7 @@ internal void HtmlEncode(StringBuilder dest, string str, int start, int len, boo
if (allowBreakLines)
{
str = str.Replace("<br>", "\u0085");
str = str.Replace("<br />", "\u0085");
}

m_StringScanner.Reset(str, start, len);
Expand Down

0 comments on commit 9d49861

Please sign in to comment.