Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 926 Bytes

Demo.md

File metadata and controls

34 lines (22 loc) · 926 Bytes

Markdown Features

Text Formatting

Markdown is a markup language with plain text formatting syntax. But you also can use standard HTML tags.

Backquotes, Lists & Code

This is a backquote:

"Our greatest glory is not in never falling but in rising every time we fall." — Confucius

To create simple lists, just enumerate all items using a dash in the prefix:

  • Alpha
  • Beta
  • Gamma

Also you can either mark some special words or write entire code blocks:

(defn fact [n]
  (if (< n 2) 1
    (* n (fact (- n 1)))))

Tables

Also simple tables is a piece of cake:

Parameter Explanation Type
note Text to publish required
password Secret token (plain or hashed) optional