Skip to content

Instantly share code, notes, and snippets.

@coolaj86
Last active September 1, 2020 04:54
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 coolaj86/6da3922d3748cf76b68f73f1f5b6d8ac to your computer and use it in GitHub Desktop.
Save coolaj86/6da3922d3748cf76b68f73f1f5b6d8ac to your computer and use it in GitHub Desktop.
A Copy/Paste Markdown Test

Markdown Support Test

Copy and paste this text block into a forum or messaging program to find out which Markdown features it supports:

### Header Support

Single line paragraph

> Hello, Quote!

Multi-line
Paragraph

1. **bold** __bold__
2. _italic_ *italic*
2. `code` and ~strike~
    - one

https://beyondcodebootcamp.com

![](https://amazon.com/favicon.ico)

------

## Advanced Features

```bash
# comment
FOO="bar"
```

```js
// comment
var foo = "bar"
```

- nested code block
  ```md
  **bold** _italic_
  ```  

Breaking \
Paragraph :+1:

- [ ] empty checkbox
- [x] checked checkbox

| Foo | Bar |
| --- | --- |
| Baz | Qux |

Self-check

Header Support

Single line paragraph

Hello, Quote!

Multi-line Paragraph

  1. bold bold
  2. italic italic
  3. code and strike
    • one

https://beyondcodebootcamp.com


Advanced Features

# comment
FOO="bar"
// comment
var foo = "bar"
  • nested code block
    **bold** _italic_

Breaking
Paragraph 👍

  • empty checkbox
  • checked checkbox
Foo Bar
Baz Qux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment