You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow mustache templating stuff like {{foo}} to be used in the .mdsh (and .md) files, not only in the .mustache files. 👍 done
Add a new {{#ignore}} .. stuff here .. {{/ignore}} tag, so it's easier to include literal templating examples in HTML. Fix markdown parsing to ignore mustache code if it's inside code blocks 👍 done
Add support for triple braces like {{{foo}}} - anything inside triple braces will be html entity decoded (so & and { become & and {, for example).. NOTE: Have added html_encode and html_decode filters .. Not yet implemented the triple braces bit..
The text was updated successfully, but these errors were encountered:
Allow mustache templating stuff like
{{foo}}
to be used in the .mdsh (and .md) files, not only in the .mustache files. 👍 doneAdd a newFix markdown parsing to ignore mustache code if it's inside code blocks 👍 done{{#ignore}} .. stuff here .. {{/ignore}}
tag, so it's easier to include literal templating examples in HTML.Add support for triple braces like
{{{foo}}}
- anything inside triple braces will be html entity decoded (so&
and{
become&
and{
, for example).. NOTE: Have addedhtml_encode
andhtml_decode
filters .. Not yet implemented the triple braces bit..The text was updated successfully, but these errors were encountered: