1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Updated markdown helper to use Extra mode

This commit is contained in:
Uncled1023 2017-08-07 14:25:44 -07:00
parent a46a63e3ca
commit a1606c8662

View File

@ -18,6 +18,7 @@ namespace Teknik.Utilities
{
// Transform the supplied text (Markdown) into HTML.
var markdownTransformer = new Markdown();
markdownTransformer.ExtraMode = true;
string html = markdownTransformer.Transform(text);
// Wrap the html in an MvcHtmlString otherwise it'll be HtmlEncoded and displayed to the user as HTML :(