ikiwiki/doc/forum/square_brackets_inside_back...

20 lines
651 B
HTML
Raw Normal View History

2010-07-14 16:54:25 +02:00
the following markdown code
2010-07-14 20:38:25 +02:00
`foo \[["bar"]]` generates the following output:
2010-07-14 16:54:25 +02:00
foo <span class="createlink"><a href="http://euler/~dabd/wiki/ikiwiki.cgi?page=__34__bar__34__&amp;from=foo&amp;do=create" rel="nofollow">?</a>&#34;bar&#34;</span>
Perhaps this is a bug in the markdown processor?
2010-07-14 20:37:21 +02:00
<blockquote>
This has nothing to do with markdown; wikilinks and directives
are not part of markdown, and just get expanded to html before
markdown processing.
There is a bug open about this:
2010-07-14 20:39:20 +02:00
[[bugs/wiki_links_still_processed_inside_code_blocks]]
Note that escaping the wikilink with a slash will avoid it being expanded
to html.
--[[Joey]]
2010-07-14 20:37:21 +02:00
</blockquote>