mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 15:14:56 -04:00

Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> Co-authored-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> Co-authored-by: Erik Michelson <github@erik.michelson.eu>
12 lines
364 B
TypeScript
12 lines
364 B
TypeScript
import MarkdownIt from 'markdown-it'
|
|
import anchor from 'markdown-it-anchor'
|
|
|
|
export const headlineAnchors: MarkdownIt.PluginSimple = (markdownIt) => {
|
|
// noinspection CheckTagEmptyBody
|
|
anchor(markdownIt, {
|
|
permalink: true,
|
|
permalinkBefore: true,
|
|
permalinkClass: 'heading-anchor text-dark',
|
|
permalinkSymbol: '<i class="fa fa-link"></i>'
|
|
})
|
|
}
|