This commit is contained in:
2026-06-10 22:03:35 -04:00
parent bc8d92d06d
commit ca567c65a0
+3 -2
View File
@@ -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>");
} }
} }