Emphasis
-
Formatting of text is very important feature for better view of the text.
-
It increase user readability and provide clear layout of the document.
-
Markdown also provide different formatting style.
Bold
to make the word bold we have to add two asterisks * before and after the word.
Example :
Bold Text
<b> Bold Text </b>
- we can also use underscore
__instead of asterisks.
Example :
Bold Text
Italic
to give the effect of italic to the text add one asterisks * around the word.
Example :
Italic Text
<i> Italic Text </i>
- we can also use underscore
_instead of asterisks.
Example :
Italic Text
we can apply both bold and italic effect together by using three asterisks * or underscore _ around the word.
Example :
Bold and Italic
Bold and Italic
Bold and Italic
Bold and Italic
<b><i> Bold and Italic </i></b>
Strike Through
this command will make a horizontal line over the text.
to give this effect to text we’ll use two tilde ~ around the word.
Example :
StrikeThrough
<strike> Strike Tag </strike>
Hope you find this helpful!
Keep smiling 😄
Related Articles
Deepen your understanding with these curated continuations.
Horizontal Rules & Line Breaks in Markdown
Master horizontal rules and line breaks in Markdown. Learn how to separate sections with ---, ***, or ___ and when to use trailing spaces vs blank lines.
Images in Markdown - Complete Guide
Learn how to embed images in Markdown with alt text for accessibility and SEO. Covers inline syntax, local images, linked images, and reference-style syntax.
Mastering Blockquotes in Markdown - Complete Guide
Learn how to use blockquotes in Markdown for quotes, callouts, and notes. Covers basic syntax, nested blockquotes, multi-paragraph, and best practices.