mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-26 11:43:59 -05:00
Update dependency markdown-it-anchor to v6 (#642)
* Update dependency markdown-it-anchor to v6 * Set initial slug-count offset on duplicate headings to 1 instead of 2 Signed-off-by: Renovate Bot <bot@renovateapp.com> Signed-off-by: Erik Michelson <github@erik.michelson.eu> Co-authored-by: Erik Michelson <github@erik.michelson.eu> Co-authored-by: Renovate Bot <bot@renovateapp.com>
This commit is contained in:
parent
d3309b3338
commit
fda558d649
3 changed files with 7 additions and 7 deletions
|
@ -62,7 +62,7 @@
|
|||
"luxon": "1.25.0",
|
||||
"markdown-it": "12.0.2",
|
||||
"markdown-it-abbr": "1.0.4",
|
||||
"markdown-it-anchor": "5.3.0",
|
||||
"markdown-it-anchor": "6.0.1",
|
||||
"markdown-it-container": "3.0.0",
|
||||
"markdown-it-deflist": "2.1.0",
|
||||
"markdown-it-emoji": "2.0.0",
|
||||
|
|
|
@ -26,8 +26,8 @@ const convertLevel = (toc: TocAst, levelsToShowUnderThis: number, headerCounts:
|
|||
}
|
||||
|
||||
const rawName = toc.n.trim()
|
||||
const nameCount = (headerCounts.get(rawName) ?? 0) + 1
|
||||
const slug = `#${slugify(rawName)}${nameCount > 1 ? `-${nameCount}` : ''}`
|
||||
const nameCount = (headerCounts.get(rawName) ?? -1) + 1
|
||||
const slug = `#${slugify(rawName)}${nameCount > 0 ? `-${nameCount}` : ''}`
|
||||
|
||||
headerCounts.set(rawName, nameCount)
|
||||
|
||||
|
|
|
@ -9437,10 +9437,10 @@ markdown-it-abbr@1.0.4:
|
|||
resolved "https://registry.yarnpkg.com/markdown-it-abbr/-/markdown-it-abbr-1.0.4.tgz#d66b5364521cbb3dd8aa59dadfba2fb6865c8fd8"
|
||||
integrity sha1-1mtTZFIcuz3Yqlna37ovtoZcj9g=
|
||||
|
||||
markdown-it-anchor@5.3.0:
|
||||
version "5.3.0"
|
||||
resolved "https://registry.yarnpkg.com/markdown-it-anchor/-/markdown-it-anchor-5.3.0.tgz#d549acd64856a8ecd1bea58365ef385effbac744"
|
||||
integrity sha512-/V1MnLL/rgJ3jkMWo84UR+K+jF1cxNG1a+KwqeXqTIJ+jtA8aWSHuigx8lTzauiIjBDbwF3NcWQMotd0Dm39jA==
|
||||
markdown-it-anchor@6.0.1:
|
||||
version "6.0.1"
|
||||
resolved "https://registry.yarnpkg.com/markdown-it-anchor/-/markdown-it-anchor-6.0.1.tgz#f54b78757d0b61455faf8ced775b39498bd6d6f9"
|
||||
integrity sha512-8qX4r5R6AtXla9HKCouEQ40inw69O5jR4VUXlZySsBLxIXlsJ3Yi9JV6JWPU4ZdA8jWTGDDJjJYNLwQ0W4jCag==
|
||||
|
||||
markdown-it-container@3.0.0:
|
||||
version "3.0.0"
|
||||
|
|
Loading…
Reference in a new issue