summaryrefslogtreecommitdiffstats
path: root/helpers/general_test.go
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2015-01-30 07:17:50 -0700
committerspf13 <steve.francia@gmail.com>2015-05-08 22:05:41 -0400
commit563a6302a0a27f1b8412d4ab621e336f83159727 (patch)
tree77ff47e3300e5140173971bf57fc0c3d1527138a /helpers/general_test.go
parentd4acacd4f50a6c0c25c22e7cc989f196bd225fd5 (diff)
Very experimental support for mmark
Either name the content files as `*.mmark`, or add `markup = "mmark"` in the front matter of your `*.md` content files.
Diffstat (limited to 'helpers/general_test.go')
-rw-r--r--helpers/general_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/helpers/general_test.go b/helpers/general_test.go
index 144f7a312..0147822c7 100644
--- a/helpers/general_test.go
+++ b/helpers/general_test.go
@@ -21,6 +21,7 @@ func TestGuessType(t *testing.T) {
{"adoc", "asciidoc"},
{"ad", "asciidoc"},
{"rst", "rst"},
+ {"mmark", "mmark"},
{"html", "html"},
{"htm", "html"},
{"excel", "unknown"},