aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorhttps://www.google.com/accounts/o8/id?id=AItOawnk4wDRm6xm3ftaTbEbVsjvSt4i-pf5WKU <Paul@web>2014-09-09 11:04:11 -0400
committeradmin <admin@branchable.com>2014-09-09 11:04:11 -0400
commitf1182d0a5c20d015604e14188a07b2d259c7a290 (patch)
tree01cde3da4a0bdf21abf1e4b5827d130661a04068 /doc
parent7e2c8d8f7cae1fd9d51f8ef5e01d0e542347c3b5 (diff)
downloadikiwiki-f1182d0a5c20d015604e14188a07b2d259c7a290.tar
ikiwiki-f1182d0a5c20d015604e14188a07b2d259c7a290.tar.gz
Diffstat (limited to 'doc')
-rw-r--r--doc/bugs/Inlining_adds_newlines_which_can_break_markdown.html13
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 "&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?
+