mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-21 12:05:07 +01:00
Respect original ID with ToC (#11895)
This commit is contained in:
parent
b9a8b38844
commit
73a5ef03b2
@ -45,7 +45,7 @@ class TOCGenerator
|
|||||||
parsed_html.traverse do |node|
|
parsed_html.traverse do |node|
|
||||||
next unless TARGET_ELEMENTS.include?(node.name)
|
next unless TARGET_ELEMENTS.include?(node.name)
|
||||||
|
|
||||||
anchor = node.text.parameterize
|
anchor = node['id'] || node.text.parameterize
|
||||||
@slugs[anchor] += 1
|
@slugs[anchor] += 1
|
||||||
anchor = "#{anchor}-#{@slugs[anchor]}" if @slugs[anchor] > 1
|
anchor = "#{anchor}-#{@slugs[anchor]}" if @slugs[anchor] > 1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user