mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-11 00:31:34 +01:00
Respect original ID with ToC (#11895)
This commit is contained in:
parent
b9a8b38844
commit
73a5ef03b2
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class TOCGenerator
|
|||
parsed_html.traverse do |node|
|
||||
next unless TARGET_ELEMENTS.include?(node.name)
|
||||
|
||||
anchor = node.text.parameterize
|
||||
anchor = node['id'] || node.text.parameterize
|
||||
@slugs[anchor] += 1
|
||||
anchor = "#{anchor}-#{@slugs[anchor]}" if @slugs[anchor] > 1
|
||||
|
||||
|
|
Loading…
Reference in a new issue