Html macro
==========

[[Parent]]: available_macros.txt

The Html macro copies its input as it is. Its purpose is to embed 
html directly into the generated html page. While the Markdown syntax 
also allows embedding html directly, the problem with that approach is 
that newlines are interpreted as ending the html block. 

Properties
----------

### Output type

Html

### Output expansion default

Disabled.

### Parameters

The html-code to embed.

### Variables

None.

Examples
--------

This

	[[Html]]:
		<p>Some text</p>
		
		<p>Some more text</p>
		
produces this:

[[Html]]:
	<p>Some text</p>
	
	<p>Some more text</p>
