HTML

A complete web page, ready to be saved to a file. Specified by :: html ::.

Can be generated by:

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
  • Separate multiple fragments by semicolons (;) or commas (,).
  • Id matching is case insensitive.
  • If omitted, all available css fragments will be automatically selected.
  • 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>