A to and fro parsing utility for styled strings
npm install styled-string-parser
import styledStringParser from 'styled-string-parser'
console.log(styledStringParser('{`World`<a:b|c;d:e/>}')))
/* Output:
* [ { content: 'World', properties: { a: 'c', d: 'e' } } ]
*/
TODO
TODO