== Wikiup Syntax Rules ==

Paragraphs are separated by one or more empty lines.

Lines that start with one or more spaces (without a list character at the beginning) are displayed in verbatim form. For instance:
	def __init__(self, Configuration, PageText, Links, SearchArg):
	self.configuration = Configuration
	self.pageText = PageText
	self.links = Links

Itemized lists are composed by lines starting with one or more tabs, followed by an asterisk. The number of tabs indicate the level of the list
	* First item in the first list
	*Second item in the first list
		* First item of the second list
		* Second item of the second list
		* Third item of the first list

Numbered lists are composed by lines starting with one or more tabs followed by a numerical character, which may be followed by a dot.
	1 First item in the first list
	2Second item in the first list
		1 First item of the second list
		2 Second item of the second list
	3 Third item of the first list

Description lists are composed by lines beginning with tabs, followed by a term, followed by a colon and one tab, and finally comes the definition.
	term1:  Definition 1.
	term2:  Definition 2.

Hyperlinks to other pages in this server are written inside square brackets, such as [index]. If the page does not exist, a question mark will be displayed, with a link that leads to a page that allows you to create the missing page.

Links to external pages are entered by simply writing the URL. For instance: http://www.gnu.org. If you want the text of the link to be different for the page name or URL, you can write the page name or URL followed by a space and the text you want, everything inside square brackets. For instance: [index Home Page] or [http://www.debian.org Debian's Site].

_Emphasized text_ is enclosed within two underscores and *bold text* is surrounded by sterisks. `Fixed Spaced` text is enclosed in single backquotes.


