From 8d65b3605aa6e6bbb53d2837cdf50dcc51c5ec89 Mon Sep 17 00:00:00 2001 From: Ryan Watters Date: Sat, 1 Apr 2017 15:33:26 -0500 Subject: [PATCH] Add fm-specific Mmark syntax per bep suggestion --- content/content-management/formats.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/content-management/formats.md b/content/content-management/formats.md index db85c2c54..650edea74 100644 --- a/content/content-management/formats.md +++ b/content/content-management/formats.md @@ -99,9 +99,11 @@ As Hugo ships with Mmark, using the syntax is as easy as changing the extension In the event that you want to only use Mmark in specific files, you can also define the Mmark syntax in the front matter of individual content (`.md`) files: ```yaml +--- title: My Post date: 2017-04-01 -markdown: 'mmark' +markdown: mmark +--- ``` {{% warning %}}