Skip to content

Instantly share code, notes, and snippets.

@girish3
Last active May 31, 2019 13:50
Show Gist options
  • Save girish3/b314e8a4f61983c9b4dcfddde5ef53ac to your computer and use it in GitHub Desktop.
Save girish3/b314e8a4f61983c9b4dcfddde5ef53ac to your computer and use it in GitHub Desktop.
[Markdown basics] #tutorial
  1. The following line is bold
    Hi, I am Bold (**Hi, I am Bold**)

  2. The following line is given emphasis
    I am cooool. (*I am cooool.*)

  3. To write something on the new line, give two spaces and hit enter
    Yay! we are on the next line

  4. Now comes the Headline

What's up people?

(# What's up people?)

  1. Bit smaller Headline

Don't judge me

(## Don't judge me)

  1. Even smaller Headline

Not so tiny, aye

(### Not so tiny, aye)

  1. You can also strikethrough using two tildes
    I can never be happy :(
    (~~I can never be happy :(~~)

  2. How can markdown be complete without links.
    guess the link

  3. Next comes the inline code
    This line has inline code callback()

  4. The block of code

# this is python
s = "Python syntax highlighting"
print s
  1. The blockquote

with the new line

  1. Raw html also works.
    I am strong

  2. The horizontal ruler


  1. And the image alt text

  2. Image with a width of 500

  1. Tables

atleast 3 dashs below each header is required.

Name | Id | City
--- | --- | ---
Girish | 4 | Nagpur
Jai | 5 | Mumbai

Name Id City
Girish 4 Nagpur
Jai 5 Mumbai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment