test-github-flavored-markdown

Test various formatting options for GFM

Recommended

Show/Hide w/markdown (needs proper indentation)

**Q**. How do we format lists and code as summary/details? Note: indentation matters (markdown processing stopped when indenting within blockquote tab level.
```js console.log("It works!"); // note: markdown indentation matters ```

And the list?

  • item 1
  • item 2
  • item 3

Tests

Show/Hide w/ code snippet

Indentation examples

Works!

**Q**. Code syntax: plain, level ```js console.log("a"); ```
**Q**. Code syntax: plain, outdented ```js console.log("a"); ```
**Q**. Code syntax: within blockquote. WORKS! (When indentation is correct)
```js console.log("a"); ```
**Q**. Code syntax: wihtin div
```js console.log("a"); ```

Fail!

**Q**. Code syntax: plain, indented (which "looks" like proper indentation, but is not processed as markdown ```js console.log("a"); ```
**Q**. Code syntax: div with blockquote
```js console.log("a"); ```

Show/Hide w/ markdown list

**Q**. list, bare I see five:
  • font color
  • first character
    • background-color
    • border-color
    • box-shadow
  • background
**Q**. list, in blockquote
I see five: - font color - first character - background-color - border-color - box-shadow - background
**Q**. list, indented within blockquote
I see five: - font color - first character - background-color - border-color - box-shadow - background
**Q**. list: give up and use "pre"
I see five:
- font color
- first character
  - background-color
  - border-color
  - box-shadow
- background