Fixed {br} and <br /> in wikimarkup and visual, now work correctly
This commit is contained in:
parent
d68793daba
commit
4056860d9b
4 changed files with 33 additions and 14 deletions
|
@ -176,7 +176,7 @@ namespace ScrewTurn.Wiki {
|
|||
}
|
||||
break;
|
||||
case "br":
|
||||
result += ("{BR}\r\n" + processChild(node.ChildNodes));
|
||||
result += ("\r\n" + processChild(node.ChildNodes));
|
||||
break;
|
||||
case "table":
|
||||
string image = "";
|
||||
|
@ -244,7 +244,7 @@ namespace ScrewTurn.Wiki {
|
|||
}
|
||||
}
|
||||
else
|
||||
result += (processChild(node.ChildNodes) + "\r\n");
|
||||
result += "\r\n" + (processChild(node.ChildNodes) + "\r\n");
|
||||
break;
|
||||
|
||||
case "img":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue