Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 708 Bytes

sample.md

File metadata and controls

39 lines (28 loc) · 708 Bytes

Heading 1


This is inline code.

A smaller heading

bold, italic, struckthrough

fold :: (a -> b -> b) -> b -> [a] -> b
fold f z [] = z
fold f z (x:xs) = f x (fold f z xs)
  1. This is a numbered list.
  2. This is the second item.
  3. This is the third item.
    1. This is the first sub-item
  • This is an unordered list.
    • This is also an unordered list
    • With another element
      • This too
  • With another list item and bold text

A regular paragraph with a this is a link.

This is an image example

Quotable quotes "Quote me!"

Syntax Description
Header Title
Paragraph Code

The end.