The editing page says:

Like code blocks, code spans will be displayed in a monospaced font. Markdown and HTML will not work within them. Note that, unlike code blocks, code spans require you to manually escape any HTML within!

That is wrong, code spans <b>don't require</b> any manual escaping.


EDIT

As Bill the Lizard♦ explained, the help description is correct, but refers to code spans created with <code></code>, not with backticks.

That should be made more clear in the help, as this:

Use backticks to create an inline <code> span:

makes me think the following text concerning code spans applies exactly to these backtick-created code spans, as opposed to code blocks, created with indentation.

share|improve this question

1 Answer

Actually, code spans do require HTML escaping.

Actually, <code>code spans <b>do require</b> HTML escaping</code>.

The editing page is referring to code spans that use the <code> tag, not backticks.

share|improve this answer
Perhaps it should be written "<code>-spans"? – dmckee Jun 4 '11 at 16:54
Ah. Then a different part of the description is wrong. "Use backticks to create an inline <code> span:" makes me think backticks create the code spans being referred to, as opposed to code blocks created by 4 space indentation. – GSerg Jun 4 '11 at 17:06
2  
@GSerg: Yeah, this definitely could use some clarification. I think anything in backticks is considered markdown, so inline backtick spans get interpreted the same as an indented block. – Bill the Lizard Jun 4 '11 at 17:19

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged