...
This commit is contained in:
@@ -107,13 +107,14 @@ public class DocsService
|
|||||||
fmHtml.Append("<tr><td class=\"fm-key\">");
|
fmHtml.Append("<tr><td class=\"fm-key\">");
|
||||||
fmHtml.Append(System.Net.WebUtility.HtmlEncode(key));
|
fmHtml.Append(System.Net.WebUtility.HtmlEncode(key));
|
||||||
fmHtml.Append("</td><td class=\"fm-value\">");
|
fmHtml.Append("</td><td class=\"fm-value\">");
|
||||||
fmHtml.Append(System.Net.WebUtility.HtmlEncode(value));
|
var encoded = System.Net.WebUtility.HtmlEncode(value);
|
||||||
|
fmHtml.Append(ConvertWikiLinks(encoded));
|
||||||
fmHtml.Append("</td></tr>");
|
fmHtml.Append("</td></tr>");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
fmHtml.Append("<tr><td colspan=\"2\">");
|
fmHtml.Append("<tr><td colspan=\"2\">");
|
||||||
fmHtml.Append(System.Net.WebUtility.HtmlEncode(line.Trim()));
|
fmHtml.Append(ConvertWikiLinks(System.Net.WebUtility.HtmlEncode(line.Trim())));
|
||||||
fmHtml.Append("</td></tr>");
|
fmHtml.Append("</td></tr>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user