From 040fce391ebe30caaa0d79b4f104275bb4a31e2c Mon Sep 17 00:00:00 2001 From: Aashish Katwal Date: Thu, 6 Oct 2022 14:30:10 +0545 Subject: [PATCH] Added Text Highlighting --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index d9a40c8..f3ed6fa 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ 22. [DropDown](#dropdown) 23. [Diagrams](#diagrams) 24. [FootNote](#footnote) +25. [Text Highlighting](#text-highlighting) Many Thanks to all the `Stargazers` who has supported this project with stars(⭐) @@ -600,3 +601,26 @@ Here's a simple footnote,[^1] and here's a longer one.[^bignote] [^1]: This is the first footnote. [^bignote]: Here's one with multiple paragraphs and code. + +## Text Highlighting + +**Explanation:** +
Text Highlighting is used to highlight the important texts in a document. Texts can be highlighted using two equal signs(==) before and after the words. + + +#### HTML +**Syntax:** +``` +These words are very important. +``` + +**Output:** +These words are very important. + +#### Markdown +**Syntax:** +``` +These words are ==very important.== +``` +**Output:** +These words are ==very important.==