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.
How to Create Links in Markdown: A Step-by-Step Guide
Learn how to create internal and external links in Markdown. Master the syntax for anchor text, URLs, titles, and automatic email links for better navigation.
Markdown List Guide: Ordered and Unordered Lists
Master Markdown lists with this easy guide. Learn how to create ordered and unordered lists, nested items, and best practices for clean, readable documents.
How to Use Headings in Markdown: A Complete Guide
Master Markdown headings to organize your content effectively. Learn how to use different levels of hashtags to improve readability, accessibility, and SEO.