For example, the following HTML:

<!--Charlie-->

Yields:

```json
{type: 'comment', value: 'Charlie'}
interface Comment {
    data?: Data;
    position?: Position;
    type: "comment";
    value: string;
}

Hierarchy (View Summary)

Properties

data?: Data
position?: Position
type: "comment"
value: string