Fixed and closed #414: "Link to this section" is now translated.

Fixed and closed #413: "~~~~" tag now correctly renders the display name.
Fixed #408: reverse formatter now works even when no new lines are present at the end of the content.
This commit is contained in:
Dario Solera 2009-11-10 07:59:28 +00:00
parent acf1af0491
commit 1147017d92
25 changed files with 34 additions and 32 deletions

View file

@ -81,6 +81,7 @@ namespace ScrewTurn.Wiki {
Match match = null;
StringBuilder buffer = new StringBuilder(html);
if(!html.EndsWith("\r\n")) buffer.Append("\r\n");
buffer.Replace("<br>", "<br />");
buffer.Replace("<BR>", "<br />");