aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorsmcv <smcv@web>2014-09-09 13:45:16 -0400
committeradmin <admin@branchable.com>2014-09-09 13:45:16 -0400
commite89409158c116750e5d25c9a93734afbaa03c6af (patch)
tree0bed38cc41cd4b51ffc771b62ef829922bd1d380 /doc
parente6c67535e89431cd67aa78185f3df51a705cdaee (diff)
downloadikiwiki-e89409158c116750e5d25c9a93734afbaa03c6af.tar
ikiwiki-e89409158c116750e5d25c9a93734afbaa03c6af.tar.gz
I would recommend using HTML here
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
index 3a7741fd6..b40d5d0ff 100644
--- a/doc/bugs/Inlining_adds_newlines_which_can_break_markdown.html
+++ b/doc/bugs/Inlining_adds_newlines_which_can_break_markdown.html
@@ -11,3 +11,16 @@ but there's a line in <pre>inline.pm</pre> that does:
And the extra newlines break the table. Can they be safely removed?
+> If you want an HTML table, I would suggest using an HTML table, which
+> should pass through Markdown without being interpreted further:
+>
+> <table><tr>
+> \[[!inline pages="link(/category/env)" feeds=no archive=yes sort=title template=tagtd]]
+> </tr></table>
+>
+> where tagtd.tmpl is of the form `<td>your markup here</td>`.
+>
+> I don't think you're deriving much benefit from Markdown's table syntax
+> here, if you have to mix it with HTML::Template and ikiwiki directives,
+> and be pathologically careful with whitespace. "Right tool for the job"
+> and all that :-) --[[smcv]]