diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-04-05 18:52:42 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-04-05 18:52:42 (GMT) |
commit | 39ba42c3b21d08ec606eee18ee8b64c67ec6a42a (patch) | |
tree | 9348a5432e6237c1ef7f9b327484e8cebfd6df5e /doc | |
parent | ba37d860547b6eec4d48077be573388686587e0e (diff) | |
download | Doxygen-39ba42c3b21d08ec606eee18ee8b64c67ec6a42a.zip Doxygen-39ba42c3b21d08ec606eee18ee8b64c67ec6a42a.tar.gz Doxygen-39ba42c3b21d08ec606eee18ee8b64c67ec6a42a.tar.bz2 |
Added documentation for ``` style fenced code block and more robust parsing
Diffstat (limited to 'doc')
-rw-r--r-- | doc/markdown.doc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/markdown.doc b/doc/markdown.doc index a35b802..87af3d8 100644 --- a/doc/markdown.doc +++ b/doc/markdown.doc @@ -390,6 +390,12 @@ int func(int a,int b) { return a*b; } The curly braces and dot are optional by the way. +Another way to denote fenced code blocks is to use 3 or more backticks (```): + + ``` + also a fenced code block + ``` + \subsection md_header_id Header Id Attributes Standard Markdown has no support for labeling headers, which |