yamat47/markdown-css demo

Headers

This is h1 header.

This is h2 header.

This is h3 header.

This is h4 header.

This is h5 header.
This is h6 header.

emphasis

This is italic text.

This is strong text.

This is combined text.

This is strikethrough text

<kbd> tag is supported: ctrl + v

Lists

  1. item 1
  2. item 2
Lower cost
The new version of this product costs significantly less than the previous one!
Easier to use
We've changed the product so that it's much easier to use!

Images

Sample image

Links

yamat47/markdown-css

Blockquotes

As Kanye West said:

We're living the future so
the present is our past.

Code block (syntax highlight is not implemented)

def get_numbers(list, index = 0, taken = [])
  return [taken] if index == list.size

  get_numbers(list, index+1, taken) +
  get_numbers(list, index+1, taken + [list[index]])
end

get_numbers([1,2,3])

Table

Header Header Header Header
Cell Cell Cell Cell
Cell Cell Cell Cell
Cell Cell Cell Cell
Cell Cell Cell Cell

Summary / Details

Summary Goes Here ...this is hidden, collapsable content...