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 information regarding superscript, subscript and footnotes #14

Open
wants to merge 3 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
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
23. [Diagrams](#diagrams)
24. [FootNote](#footnote)
25. [Comments](#comments)
26. [Superscript](#superscript)
27. [Subscript](#subscript)


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

Expand Down Expand Up @@ -487,6 +490,7 @@ For more information on how to write mathematical expressions, [visit this page]
<br>Between the *summary* tags, we write the heading/content to be displayed inside or what we refer to as **DROPDOWN TITLE**.
<br>After *summary*, we can include the detailed content, this will be shown only when the user clicks the dropdown title.


## Diagrams

**Syntax:**
Expand Down Expand Up @@ -623,3 +627,38 @@ 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.

## Superscript

**Code:**
```
x^2^
```
**Output:**

x<sup>2</sup>

**Note:** Some sites/applications don't support this so you have to use the HTML tags, to get superscript.

**Code:**
```
x<sup>2</sup>
```

## Subscript

**Code:**
```
CH~4~
```
**Output:**

CH<sub>4</sub>

**Note:** Some sites/applications don't support this(they consider this as strikethrough) so you have to use the HTML tags, to get subscript.

**Code:**
```
CH<sub>4</sub>
```