diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-05-01 22:32:11 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-05-15 17:36:01 +0300 |
commit | 8f9a80a9ac8f353ce2cdafa23f0e5163d30d5800 (patch) | |
tree | edb89ce300c831897cbe80b9e4e2000b0807acff /mod/mod-repository-root.cxx | |
parent | 038ba04cc0e5a6b933254813c34108d6e3fd4a38 (diff) |
Add support for description-type package manifest value
Diffstat (limited to 'mod/mod-repository-root.cxx')
-rw-r--r-- | mod/mod-repository-root.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mod/mod-repository-root.cxx b/mod/mod-repository-root.cxx index fc13aca..ed170c9 100644 --- a/mod/mod-repository-root.cxx +++ b/mod/mod-repository-root.cxx @@ -6,6 +6,8 @@ #include <time.h> // tzset() +#include <cmark-gfm-core-extensions.h> + #include <sstream> #include <algorithm> // find() @@ -285,6 +287,10 @@ namespace brep // sub-handlers, while handling requests). // tzset (); + + // To recognize cmark-gfm extensions while parsing Markdown later on. + // + cmark_gfm_core_extensions_ensure_registered (); } bool repository_root:: |