From f1182d0a5c20d015604e14188a07b2d259c7a290 Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawnk4wDRm6xm3ftaTbEbVsjvSt4i-pf5WKU" Date: Tue, 9 Sep 2014 11:04:11 -0400 Subject: [PATCH] --- ...ning_adds_newlines_which_can_break_markdown.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 doc/bugs/Inlining_adds_newlines_which_can_break_markdown.html 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: + +
+| [ [!inline pages="link(/category/env)" feeds=no archive=yes sort=title template=taglist] ] |
+
+ +but there's a line in
inline.pm
that does: +
+        return "<div class=\"inline\" id=\"$#inline\"></div>\n\n";
+
+ +And the extra newlines break the table. Can they be safely removed? + -- 2.44.0