<p>
Hello <b>world</b>
</p>
{
"text": "Hello world"
"annotations": [
{ "type": "bold", "at": [6, 11] }
]
}
<p>
<em>overlapping <b>annotations</b></em> <b>cause problems</b>
</p>
{
"text": "overlapping annotations cause problems"
"annotations": [
{ "type": "italic", "at": [0, 23] }
{ "type": "bold", "at": [12, 38] }
]
}
<a>
anchor tags.<p><a href="foo">Foo <a href="bar">bar</a></a></p>
{
"text": "foo bar"
"annotations": [
{ "type": "link", "at": [0, 7], "to": "foo" }
{ "type": "link", "at": [4, 7], "to": "bar" }
]
}