Skip to content

Instantly share code, notes, and snippets.

@mittalyashu
Last active October 3, 2017 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mittalyashu/c1c3967ad4f186604ba1e7f3fae9b221 to your computer and use it in GitHub Desktop.
Save mittalyashu/c1c3967ad4f186604ba1e7f3fae9b221 to your computer and use it in GitHub Desktop.

#Markdown Cheatsheet Markdown is a short-hand syntax for easily converting text to HTML. Below are some popular examples of Markdown formatting. For more examples reference Markdown Basics for a more detailed overview.

Links This is an example link

Code Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.

      ```html
      <p>This is code!</p>
      ```

Quoting If you're replying to someone, you can copy portions of their text into your reply, and mark them as quotations by putting > at the start of each line.

      > This line is quoted.

Italic Here’s a word that is emphasized

Bold Here’s a word that is bold

Images alt text

Unordered List

  • Candy
  • Gum
  • Peanuts

Ordered List

  1. Red
  2. Green
  3. Blue

Click here to learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment