diff options
author | https://www.google.com/accounts/o8/id?id=AItOawnk4wDRm6xm3ftaTbEbVsjvSt4i-pf5WKU <Paul@web> | 2014-09-09 11:04:11 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2014-09-09 11:04:11 -0400 |
commit | f1182d0a5c20d015604e14188a07b2d259c7a290 (patch) | |
tree | 01cde3da4a0bdf21abf1e4b5827d130661a04068 /doc | |
parent | 7e2c8d8f7cae1fd9d51f8ef5e01d0e542347c3b5 (diff) | |
download | ikiwiki-f1182d0a5c20d015604e14188a07b2d259c7a290.tar ikiwiki-f1182d0a5c20d015604e14188a07b2d259c7a290.tar.gz |
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/Inlining_adds_newlines_which_can_break_markdown.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/bugs/Inlining_adds_newlines_which_can_break_markdown.html b/doc/bugs/Inlining_adds_newlines_which_can_break_markdown.html new file mode 100644 index 000000000..3a7741fd6 --- /dev/null +++ b/doc/bugs/Inlining_adds_newlines_which_can_break_markdown.html @@ -0,0 +1,13 @@ +I'm trying to put a list of tags in a table, so I carefully make a newline-free taglist.tmpl and then do: + +<pre> +| [ [!inline pages="link(/category/env)" feeds=no archive=yes sort=title template=taglist] ] | +</pre> + +but there's a line in <pre>inline.pm</pre> that does: +<pre> + return "<div class=\"inline\" id=\"$#inline\"></div>\n\n"; +</pre> + +And the extra newlines break the table. Can they be safely removed? + |