- Markdown Cheatsheet
- Markdown Basics (Github Docs)
- Styling Text
- Styling Image
- Section or Content Link / Table of Contents
- Basic formatting syntax
- Organizing information with tables
- Collapsed Section
- Creating and highlighting code blocks
- Creating diagrams
- Writing Equation (Mathematical Expressions)
- Autolinked References and URLs
- Attaching Files
- Creating a Permanent Link to Code Snippet
- HTML/CSS style (inline style)
<p style="text-align: center;">text_content</p>
text_content
- Github Flavoured
<p align="center">text_content</p>
text_content
<center>text_content</center>
text_content
<span style="color:blue">some *blue* text</span>
some blue text
- HTML style
<p align="center">
<img src="images/markdown.jpg"
alt="markdown image"
width="720"
height="360"
style="display: block; margin: 0 auto"
/>
/p>
[Chapter-1](#chapter-1)
[Chapter-2](#chapter-2)
[Chapter-3](#chapter-3)
.......... text content of chapter 1 .............
.......... text content of chapter 2 .............
.......... text content of chapter 3 .............