HTML
A complete web page, ready to be saved to a file. Specified by :: html ::
.
Can be generated by:
- A liquid template with
outputType: html
. - A markdown document, possibly itself generated by a liquid template.
Parameters
An HTML fragment may specify the following parameters:
Parameter | Definition | Cardinality |
---|---|---|
css | Select one or more css fragments to embed into this html fragment. | Optional |
id | A unique identifier used to select this html fragment. | Optional |
Example
:: html ::
id: document
css: simple
---
<html>
<head>
<title>Example</title>
</head>
<body>
<h1>Heading</h1>
<p>This is the first paragraph.</p>
</body>
</html>