Possible Duplicate:
How do I format my code blocks?
When I put HTML into the form field for Stack Overflow questions, it doesn't show up. Why is this, and is there a way to get HTML markup to show up?
When I put HTML into the form field for Stack Overflow questions, it doesn't show up. Why is this, and is there a way to get HTML markup to show up? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Paste your code in the text area; select your HTML code, and click on the "{}" icon above. The code will get indented, and it will show the code in your question. |
||||
|
|
|
Write your HTML code, select it, and click the "{}" icon on the top of that textarea.
|
||||
|
|
|
It doesn't show up because it gets parsed as (invalid) HTML. You can use HTML to format your post, and it doesn't get shown if it's used for formatting. Here's the list of valid HTML tags. As that page says,
Notice that, for example, You need to tell the parser not to render the sample, and instead to display it. You can do that in one of three ways:
|
|||
|
|
|
And this question basically proofs this article: http://www.codinghorror.com/blog/2009/10/treating-user-myopia.html You indent the code 4 lines and that should work. |
|||
|
|