# @welshman/content [](https://npmjs.com/package/@welshman/content)
Utilities for parsing note content.
```typescript
import {parse, render} from '@welshman/content'
const content = "Hello
from https://coracle.tools! "
const html = parse({content}).map(render).join("")
// => Hello<br>from coracle.tools/! <script>alert('evil')</script>
```