RSS Git Download  Clone
Raw Blame History
export function htmlStrip(html: string) : string {
    const tmp = document.createElement("DIV");
    tmp.innerHTML = html;
    return tmp.textContent || tmp.innerText || "";
}