Help:Article

From wiki.thepatternofeverything.org
Jump to: navigation, search

Article

This describes the contents of an article. An article consists of blocks, which come in two flavors: paragraphs and special blocks. Both of them end with a newline.

Paragraphs & Special Blocks

Paragraphs are separated by empty lines.

<article>                 ::= <special-block-and-more> | <paragraph-and-more> 
<special-block-and-more>  ::= <special-block> ( EOF | [<newline>] <special-block-and-more> 
                                                    | (<newline> | "") <paragraph-and-more> )
<paragraph-and-more>      ::= <paragraph> ( EOF | [<newline>] <special-block-and-more> 
                                                | <newline> <paragraph-and-more> )