]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/Inlining_adds_newlines_which_can_break_markdown.html
3a7741fd6280a7aea3a9c2e7728f54205c82d38d
[git.ikiwiki.info.git] / doc / bugs / Inlining_adds_newlines_which_can_break_markdown.html
1 I'm trying to put a list of tags in a table, so I carefully make a newline-free taglist.tmpl and then do:
3 <pre>
4 | [ [!inline pages="link(/category/env)" feeds=no archive=yes sort=title template=taglist] ] |
5 </pre>
7 but there's a line in <pre>inline.pm</pre> that does:
8 <pre>
9         return "&lt;div class=\"inline\" id=\"$#inline\"&gt;&lt;/div&gt;\n\n";
10 </pre>
12 And the extra newlines break the table.  Can they be safely removed?