ir3ne / Markdown-sample

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Markdown is golden πŸŽ‰

This document makes a list of the common things you use in Markdown.

Read the full article HERE πŸ”₯

1. Code Blocks

Generic code block

your code here

Specific code language

const boss = '😺';
console.log(`Hi ${boss}!`);

Inline code

Hey did you try const count = 0;?

Diff

.markdown-box {
    background-color: black;
    color: white;
    - display: flex;
    + display: grid;
}

a joke - try it (on Mac)!

$ say Markdown is cooool!

2. Headings

h1

h2

h3

h4

standard text

3. Paragraph and text appearance

Paragraph and break line

This text is πŸ‘―β€ on the same line

This text has
one line break πŸ‘―β€

These are separated πŸ‘―β€

lines of text

Bold / Italic / Strikethrough / Blockquote

Italic

Italic

Bold

Bold

Strikethrough

Blockquote Quote break. This is a very long line. Let's keep writing to make sure this is a line long enough to go on multiple lines. Oh, you can put a bold into a blockquote.

4. Links

https://medium.com/

My GitHub Profile

My GitHub Profile

I have a long link here but I can give it a nice name nice name

5. Images

this is the space for alt

Amazing Cat

Linked Image

6. Lists

  • List 1
  • List 2
  • List 3
  • List 4
  • List 5
  • List 6

7. Checkbox

[x] add Scss

[ ] add Webpack

8. Horizontal Rules


9. Tables

Name Animal Food
Dalì cat 🐟
Otto dog πŸ–
Pumpkin parrot 🌱

look at the alignment

Left Center Right
Dalì cat 🐟
Otto dog πŸ–
Pumpkin parrot 🌱

10. Comments

empty line is necessary [comment]: # (This is a comment)

πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘

About