]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/Inlining_adds_newlines_which_can_break_markdown.mdwn
turn this into mdwn
[ikiwiki.git] / doc / bugs / Inlining_adds_newlines_which_can_break_markdown.mdwn
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:
2
3     | \[[!inline pages="link(/category/env)" feeds=no archive=yes sort=title template=taglist]] |
4
5 but there's a line in `inline.pm` that does:
6
7     return "<div class=\"inline\" id=\"$#inline\"></div>\n\n";
8
9 And the extra newlines break the table.  Can they be safely removed?
10
11 > If you want an HTML table, I would suggest using an HTML table, which
12 > should pass through Markdown without being interpreted further:
13 >
14 >     <table><tr>
15 >     \[[!inline pages="link(/category/env)" feeds=no archive=yes sort=title template=tagtd]]
16 >     </tr></table>
17 >
18 > where tagtd.tmpl is of the form `<td>your markup here</td>`.
19 >
20 > I don't think you're deriving much benefit from Markdown's table syntax
21 > here, if you have to mix it with HTML::Template and ikiwiki directives,
22 > and be pathologically careful with whitespace. "Right tool for the job"
23 > and all that :-)
24 >
25 > When I edited this page I was amused to find that you used HTML,
26 > not Markdown, as its format. It seems oddly appropriate to my answer, but
27 > I've converted it to Markdown and adjusted the formatting, for easier
28 > commenting.
29 > --[[smcv]]