How to format a text containing underscore (like for instance "A_B") to italic style ?
Here's an example which fails in parsing somehow (from a quick test just on underscore):

*A_B*

share|improve this question

1 Answer

up vote 1 down vote accepted

Use a HTML tag (<i>),

<i>**A_B**</i>

produces A_B. The underscore makes Markdown fail to interpret the markup as intended.

share|improve this answer

You must log in to answer this question.

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