Skip to content

Instantly share code, notes, and snippets.

@yanaaitekina
Last active February 16, 2019 21:31
Show Gist options
  • Save yanaaitekina/a4f8b0359d77579fd2faed32c99c0ef6 to your computer and use it in GitHub Desktop.
Save yanaaitekina/a4f8b0359d77579fd2faed32c99c0ef6 to your computer and use it in GitHub Desktop.

Image

Markdown

Markdown is a lightweight markup language with plain text formatting syntax. Its design allows it to be converted to many output formats, but the original tool by the same name only supports HTML.[8] Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor. Since the initial description of Markdown contained ambiguities and unanswered questions, the implementations that appeared over the years have subtle differences and many come with syntax extensions.

I really enjoyed Markdown tutorial. I think it was a great idea to start learning this programming tool.

Markdown Articles

Article 1

Article 2

Article 3

Reasons to learn Markdown

  1. Useful skill
  2. I would be able to add it to my resume
  3. Github often uses Markdown for README files and for comments

Basics of Markdown

  • italics

  • bold

  • Header 1

  • Header 2

  • Header 3

  • Header 4

  • Header 5
  • Header 6
  • [>] Blockquote

  • [1.] Ordered List

  • [* ] Unordered List

  • [ ] Paragraph

  • checkbox
  • checkbox
  • checkbox Line of code has a tick mark - [ ] checkbox

block-of-code.html

<!DOCTYPE html>
  <html>
  <head>
    <title>learn to code</title>
  </head>
  <body>
    <p>Rulan and Yana are learning to code</p>
  </body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment