name: "text/strip-html"
module: "text-processing"
section: "Text Cleaning"
Remove HTML tags and decode common entities (`&`, `<`, `>`, `"`, `'`, `'`, ` `).
```sema
(text/strip-html "<p>Hello <b>world</b></p>") ; => "Hello world"
(text/strip-html "a & b < c") ; => "a & b < c"
```