]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/bugs/escaped_style_tag_becomes_elyts.mdwn
(no commit message)
[ikiwiki.git] / doc / bugs / escaped_style_tag_becomes_elyts.mdwn
index 24d8fbf7e54d5a6ac3f3aac91538ee14b94948e1..709542527a726a0b60a331f65c49a3a5579840c9 100644 (file)
@@ -7,7 +7,7 @@ $r=~s/<elyts/<style/ig;
 </code></pre>
 
 However, this workaround also applies to indented text or text in backticks:
-if you write <code>there is a bug involving the `&lt;style&gt;` tag</code>,
+if you write <code>there is a bug involving the \`&lt;style&gt;\` tag</code>,
 or use indentation like
 
 <pre><code>you can use this markup:
@@ -15,8 +15,10 @@ or use indentation like
     &lt;style type="text/css"&gt;...&lt;/style&gt;
 </code></pre>
 
-then that gets turned into `&lt;elyts` in the HTML too. This makes it quite
-difficult to talk about HTML on an IkiWiki instance (I had to use raw HTML in
+then that gets turned into `<elyts` in the source before passing through
+`markdown`, comes out as `&lt;elyts` in the output HTML, and is rendered
+as `<elyts` by the browser. This makes it quite difficult to talk about
+HTML stylesheet markup on an IkiWiki instance (I had to use raw HTML in
 this bug report's source to avoid the bug).
 
 I think the side-effect of the workaround is more damaging than the actual bug