diplodoc-platform / transform

Simple transformer YFM (Yandex Flavored Markdown) to HTML.
MIT License
56 stars 36 forks source link

fix(anchors): use entire heading text for auto named anchors #384

Closed d3m1d0v closed 7 months ago

d3m1d0v commented 7 months ago

Auto-named anchors used only last text token of heading. I fixed that, and now auto-naming is generated from contents of all text tokens of heading.

Also, it fixed some cases where inline markup got into auto-generated anchors and they became broken

Example markup: ## _Lorem ~~ipsum **dolor** sit~~ amet_ Before: auto anchor is #amet Now: auto anchor is #lorem-ipsum-dolor-sit-amet