diff options
author | https://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web> | 2013-04-13 11:15:11 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2013-04-13 11:15:11 -0400 |
commit | 00a94c3db14ab78b8764b77ceb37250041665878 (patch) | |
tree | 5eb26842bef72a2ad30e2d0e7a290d6792fa9a87 | |
parent | a392e676e6ff96f057438d77536977e69e8700a5 (diff) | |
download | ikiwiki-00a94c3db14ab78b8764b77ceb37250041665878.tar ikiwiki-00a94c3db14ab78b8764b77ceb37250041665878.tar.gz |
meh - already supported, but buggy!
-rw-r--r-- | doc/todo/Fenced_code_blocks___40__from_GitHub_Flavored_Markdown__41__.mdwn | 16 |
1 files changed, 16 insertions, 0 deletions
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 cc6ffa67b..4ad1fb9f0 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 @@ -26,3 +26,19 @@ main = forever $ > > It is not a standard feature (as much as Markdown is [standardized](http://www.codinghorror.com/blog/2012/10/the-future-of-markdown.html)...) 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 `<pre>` block for some reason: +> > +> > ``` +> > this is a github-style fenced in code block +> > this is another line +> > ``` +> > +> > ... maybe a bug in Discount... --[[anarcat]] |