End of multiline verbatim block not recognized
Status: Beta
Brought to you by:
egroise
The WIKI-format renderer fails to detect the end of
multiline verbatim blocks in V1 RC2.
A preliminary fix for this problem is to replace the line
> string [] lines = content.Split(new char[] {'\n'});
in WikiRenderer.Format (WikiRenderer.cs) with
> string [] lines = content.Replace("\r","").Split(new
char[] {'\n'});