girish3
4/5/2018 - 2:37 PM

[Markdown basics] #tutorial

[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

  2. Raw html also works.
    I am strong

  3. The horizontal ruler


  1. And the image

  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

NameIdCity
Girish4Nagpur
Jai5Mumbai