Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Text Highlighting #26

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
23. [Diagrams](#diagrams)
24. [FootNote](#footnote)
25. [Comments](#comments)
26. [Text Highlighting](#text-highlighting)

Many Thanks to all the `Stargazers` who has supported this project with stars(⭐)

Expand Down Expand Up @@ -623,3 +624,26 @@ This is Line Number 3.
This is Line Number 1.
<!---This is Line Number 2 and would not be rendered as this is a comment. --->
This is Line Number 3.


## Text Highlighting

**Explanation:**
<br>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 <mark>very important.</mark>
```

**Output:**
These words are <mark>very important.</mark>

#### Markdown
**Syntax:**
```
These words are ==very important.==
```
**Output:**
These words are ==very important.==