You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My intention is to implement additional syntax features for the markdown files such as italics and bold. They should be transformed into html properly.
Solution:
In markdown, *sample text* or _sample text_ are used to display the sample text in italics and **sample text** or __sample text__ are used to display the sample text in bold. For html, they have to be transformed into <i> and <b> elements.
The text was updated successfully, but these errors were encountered:
gulyapulya
changed the title
Markdown syntax features for Italics, Bold
Markdown syntax features for Italics and Bold
Sep 28, 2022
My intention is to implement additional syntax features for the markdown files such as italics and bold. They should be transformed into html properly.
Solution:
In markdown,
*sample text*
or_sample text_
are used to display the sample text in italics and**sample text**
or__sample text__
are used to display the sample text in bold. For html, they have to be transformed into<i>
and<b>
elements.The text was updated successfully, but these errors were encountered: