This is a demo project that showcases some lesser-known Markdown features that you can use on GitHub.
You can create definition lists using the following syntax:
Term 1 : Definition 1
Term 2 : Definition 2
You can use double tildes (~~) to strike through text. For example, ~~this text is crossed out~~ will appear as this text is crossed out.
You can add footnotes to your README file using the following syntax:
Here's some text with a footnote.1
You can define abbreviations in your README file using the following syntax:
*[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium
The HTML specification is maintained by the W3C.
You can create nested task lists in your README file using the following syntax:
- Task 1
- Subtask 1
- Subtask 2
- Task 2
You can create definition tables using the following syntax:
Term 1 : Definition 1
Term 2 : Definition 2
You can add math formulas to your README file using LaTeX syntax. For example, the Pythagorean theorem is expressed as a^2 + b^2 = c^2.
You can use custom emoji in your README file using the following syntax:
🚀 This is a custom emoji.
You can add Mermaid diagrams to your README file using the following syntax:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
Footnotes
-
This is the footnote. ↩