X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/6e5d67826c8801ed7bbd95e4f5e1b75cc623674c..ab1a7ae51a6fafc762e64742b58d2a1febd241a7:/doc/todo/Fenced_code_blocks___40__from_GitHub_Flavored_Markdown__41__.mdwn diff --git a/doc/todo/Fenced_code_blocks___40__from_GitHub_Flavored_Markdown__41__.mdwn b/doc/todo/Fenced_code_blocks___40__from_GitHub_Flavored_Markdown__41__.mdwn index 68a355359..24552b29f 100644 --- a/doc/todo/Fenced_code_blocks___40__from_GitHub_Flavored_Markdown__41__.mdwn +++ b/doc/todo/Fenced_code_blocks___40__from_GitHub_Flavored_Markdown__41__.mdwn @@ -22,3 +22,23 @@ main = forever $ """]] > --[[Joey]] + +> > It is not a standard feature (as much as Markdown is [[standardized|Track_Markdown_Standardisation_Efforts]]...) But it does allow for [syntax hilightning](https://help.github.com/articles/github-flavored-markdown) too, just tag the language name after the backticks. It *seems* that Discount supports github-style backtick format (as well as Pandoc `~~~~` format) but doesn't allow the keyword argument. +> > +> > I strongly support this feature. --[[anarcat]] +> > +> > In fact, it turns out that it already works here! +> > +> > ~~~~ +> > this is a pandoc-style fenced in code block +> > this is another line +> > ~~~~ +> > +> > github-style backticks, however, do not add a wrapping `
` block for some reason:
+> >
+> > ```
+> > this is a github-style fenced in code block
+> > this is another line
+> > ```
+> >
+> > ... maybe a bug in Discount... --[[anarcat]]