Skip to content

Latest commit

 

History

History

ep023

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Today I go over some basics with markdown (as well as some tips and tricks!). Given how pervasive markdown is in open source, documentation, chat clients, etc. I hope this is useful!

Interactive Markdown examples

Lists

- lists (unordered and numbered)
- checkboxes
- fixed width text
- code blocks
- headers
- links (inline and reference)
- images
- bold / italic
- quotes
- lists (unordered and numbered)
  - indented
  - item
- checkboxes
- fixed width text
- code blocks
- headers
- links (inline and reference)
- images
- bold / italic
- quotes
- lists (unordered and numbered)

test test

  - indented
  - item
- checkboxes
- fixed width text
- code blocks
- headers
- links (inline and reference)
- images
- bold / italic
- quotes
- lists (unordered and numbered)

  test test

  - indented
  - item
- checkboxes
- fixed width text
- code blocks
- headers
- links (inline and reference)
- images
- bold / italic
- quotes
- lists (unordered and numbered)

  test test

  * indented
  * item

1. foo
2. bar
3. baz

- checkboxes
- fixed width text
- code blocks
- headers
- links (inline and reference)
- images
- bold / italic
- quotes
- lists (unordered and numbered)

  test test

  * indented
  * item

0. foo
0. bar
0. baz

- checkboxes
- fixed width text
- code blocks
- headers
- links (inline and reference)
- images
- bold / italic
- quotes
- lists (unordered and numbered)

  test test

  * indented
  * item

1. foo
1. quax
1. bar
1. baz

- checkboxes
- fixed width text
- code blocks
- headers
- links (inline and reference)
- images
- bold / italic
- quotes

Checkboxes

- checkboxes
  - required item 1
  - required item 2
- fixed width text
- code blocks
- headers
- links (inline and reference)
- images
- bold / italic
- quotes
- checkboxes
  - [x] required item 1
  - [ ] required item 2
- fixed width text
- code blocks
- headers
- links (inline and reference)
- images
- bold / italic
- quotes

Code blocks

- code blocks


      print('hello world')
      print('my name is anthony')


- fixed width text
- headers
- links (inline and reference)
- images
- bold / italic
- quotes
- code blocks

   ```python
   print('hello world')
   print('my name is anthony')
   ```

   ```pycon
   >>> print('hello world')
   hello world
   ```

   ```console
   $ echo hi
   hi
   ```

- fixed width text
- headers
- links (inline and reference)
- images
- bold / italic
- quotes

Fixed width text

- fixed width text: `pip install pre-commit`
`
foo
bar
baz
`
- headers
- links (inline and reference)
- images
- bold / italic
- quotes

Headers

- headers
# this is a h1
# this is a h2
# this is a h3
# this is even deeper

this is a header
================

this is a header
----------------


- links (inline and reference)
- images
- bold / italic
- quotes

Links

- links (inline and reference)


[go visit pre-commit.com!](https://pre-commit.com)


go visit [@asottile]'s [github] profile


[@asottile]: https://github.com/asottile
[github]: https://github.com

- images
- bold / italic
- quotes

Images

- images


![cat saying shipit high five](https://i.fluffy.cc/MKjDMmwXxZlqRTwnn070gVqZ8Rwh6d3p.gif)


- bold / italic
- quotes

Bold / Italic

- **bold** / _italic_
- quotes

Quotes

- quotes


> > you should fix this !
>
> it would be better if you used a semicolon


ok I have fixed it