MyBlogs

Learn Markdown

11 December,2020

Getting started | applying markdown in github

Markdown is a lightweight and easy-to-use syntax for styling all forms of writing on the GitHub platform.

What is Markdown?

Markdown is a way to style text on the web. You control the display of the document; formatting words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like # or * .

You can use Markdown most places around GitHub:

Syntax Guide

Headings

# This is heading 1
## This is heading 2
###### This is heading 6

Output

This is heading 1

This is heading 2

This is heading 6

Emphasis

*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

_You **can** combine them_

Output

This text will be italic
This will also be italic

This text will be bold
This will aslo be bold

You can combine them

Lists

Unordered lists

* Coffee
* Tea
   * Black tea
   * Green tea

Syntax: *[space] xyz

Ordered lists

1. Item1
1. Item2
1. Item3

Syntax: 1.[space] xyz

Output

Unordered lists

Ordered lists

  1. Item1
  2. Item2
  3. Item3

Images

![React logo](/images/logo.png)

Syntax:  ![Alt Text](url)

Output

Links

[ GitHub ](https://github.com)
[ Instagram ](https://instagram.com)
[ Facebook ](https://facebook.com)

Syntax:  [Alt Text](url)

Output

Github
Instagram
Facebook

Blockqoutes

> Change is good
> Your fate will come to you

Output

Change is good
Your fate will come to you

Inline code

`html`
`css`
`javasript`

Output

html

css

javasript