:: :- :* title+"urbit-flavored markdown docs" :: author+"ted blackman" :: date+~2017.8.25 :: == :: ;> # udon: urbit-flavored markdown ## overview Udon is a minimal markup language for creating and rendering text documents, with a markdown-inspired syntax. It's integrated with the hoon programming language, allowing it to be used as standalone prose in its own file or inside a hoon source file, in which case it will be parsed into a tree of HTML nodes using hoon's `sail` datatype. Udon is stricter than markdown and generally supports only one syntax for each type of HTML node it emits. ### headers Headers in udon begin with one or more `#` characters, followed by a space. The number of leading `#`s corresponds to the resulting HTML element: `#` yields an `

`, `##` yields an `

`, and so on through `

`. Example: ``` ### Header (h3) ##### Header (h5) ``` produces: > ### Header (h3) ##### Header (h5) ### lists A line beginning with a `-` or `+` followed by a space is interpreted as an element of a list. `-` means unordered list (`