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? | |||||
feedback
|
This question came from our site for professional and enthusiast programmers.
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
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. | ||||
|
feedback
|
|
Write your HTML code, select it, and click the "{}" icon on the top of that textarea.
| ||||
|
feedback
|
|
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:
| |||
|
feedback
|
|
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. | |||
|
feedback
|