Skip to content

Guideline on formatting and styling writings in markdown

Notifications You must be signed in to change notification settings

ParthaPratimBanik/markdown_guide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Contents:

Markdown Cheatsheet


Markdown Cheatsheet

Markdown Basics (Github Docs)


Styling Text:


Center

  • 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

Color

<span style="color:blue">some *blue* text</span>

some blue text

Styling Image


Center

  • HTML style
<p align="center">
    <img src="images/markdown.jpg" 
        alt="markdown image"
        width="720" 
        height="360" 
        style="display: block; margin: 0 auto"
      />
/p>

markdown image

Section or Content Link / Table of Contents


[Chapter-1](#chapter-1)
[Chapter-2](#chapter-2)
[Chapter-3](#chapter-3)

Chapter-1
Chapter-2
Chapter-3

Chapter-1

.......... text content of chapter 1 .............

Chapter-2

.......... text content of chapter 2 .............

Chapter-3

.......... text content of chapter 3 .............

About

Guideline on formatting and styling writings in markdown

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published