Introduction

Triv is a way of writing elements without tags:

element: content

Elements are placed within other elements by indentation:

a:
  b:
    c:

Content is placed by indentation also:

element:
  Any text is content
  by default.

Sections

A heading can be created for a div or other element with a section:

[Heading level 1]
Content
[Heading level 2] h2
Content

Sections are placed within other sections by dots around the title:

[A]
[.B.]
[..C..]

A section closer has no title:

html:
  body:
[Title]
content
[]
    footer:

Literals

Native HTML or any other text is possible between tripled double-quotes:

"""
<a href="#"><b>content</b></a>
"""