``` const parse = require('posthtml-parser') const result = parse(" Hello yes") console.log(JSON.stringify(result, undefined, 2)) [ { "tag": "p", "content": [ " Hello ", { "tag": "World", "content": [ " yes" ] } ] } ] ```