Git Markdown

This file is used to get an idea on how to write text on Github

Good resource for --> Click here

Writing Text on Github:

heading 1 --> converted to

in html

heading 2

heading 3

heading 4

heading 5

heading 6

Normal Text

Bold Text

Italic Text

strikthrough Text

Writing lists on Github:

Unordered lists:

  • item 1

  • item 2

    • sub item 2b

Ordered lists:

  1. item 1

  2. item 2

  3. item 3

Item Completion list:

Linking itmes:

TextThatYouWantToApper

Displaying images:

In brackets you would put the local path to the image or the URL:

Code Blocks:

column 1column 2

row1a

row2a

Note: To left align column :--- To right align column ---:

This is console.log()

or:

console.log()

With above you can mark the language

console.log()

Code Block Highlighting:

Basic example:

Before:

const_data = []

After:

const_data = {}

Better way of doing thigs:

- const_data = []
+ const_data = {}

Quotes:

Idea 1

Agree

Idea 2

Disagree

Closing an issue when the pull request gets merged

closes #3543534 - Number of the issue fixes #34435 - Number of the issue

Last updated