SGML

Markdown Markup Block Examples

htmlblock2
HTML block example
Note: To produce HTML from the example markdown sources, copy and paste an example source, store it into a file with the ".md" file extension, and invoke
sgmlproc <your-file.md>
where <your-file.md> is replaced by the actual file used for storing.

htmlblock2

Text followed by

<table>
	<tr>
		<td>A</td>
		<td>top-level</td>
	</tr>
	<tr>
		<td>HTML</td>
		<td>block</td>
	</tr>
</table>

followed by some text

Rendered HTML

<p>Text followed by
</p><table>
	<tr>
		<td>A</td>
		<td>top-level</td>
	</tr>
	<tr>
		<td>HTML</td>
		<td>block</td>
	</tr>
</table>
<p>followed by some text
</p>