/** A field that stores text meant to be an HTML fragment. Unlike {@link Text}, html-like characters aren't escaped, but instead the content is subject to html sanitization to prevent XSS.
*
* **Params**: see {@link TextStorage}
*/
exportdefaultclassHtmlextendsText{
getTypeName=()=>"html";
asyncencode(_:any,input:string){
if(input===null){
returnnull;
}
const{default:sanitizeHtml}=awaitimport("sanitize-html");//putting it here not to slow down `new Sealious.app()`