From: https://www.google.com/accounts/o8/id?id=AItOawnk4wDRm6xm3ftaTbEbVsjvSt4i-pf5WKU <Paul@web>
Date: Tue, 9 Sep 2014 15:04:11 +0000 (-0400)
Subject: (no commit message)
X-Git-Tag: 3.20140916~77
X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/f1182d0a5c20d015604e14188a07b2d259c7a290?ds=inline

---

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 "&lt;div class=\"inline\" id=\"$#inline\"&gt;&lt;/div&gt;\n\n";
+</pre>
+
+And the extra newlines break the table.  Can they be safely removed?
+