Set role=presentation for header anchor links

This commit is contained in:
Shadowfacts 2019-09-16 18:11:57 -04:00
parent bc280943f3
commit 605aaab747
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 3 additions and 2 deletions

View File

@ -32,7 +32,8 @@ md.core.ruler.push("anchor", (state) => {
attrs: [ attrs: [
["class", "header-anchor"], ["class", "header-anchor"],
["href", "#" + slug], ["href", "#" + slug],
["aria-hidden", "true"] ["aria-hidden", "true"],
["role", "presentation"]
] ]
}), }),
Object.assign(new state.Token("html_block", "", 0), { content: token.markup }), Object.assign(new state.Token("html_block", "", 0), { content: token.markup }),
@ -46,4 +47,4 @@ md.core.ruler.push("anchor", (state) => {
export function render(text: string): string { export function render(text: string): string {
return md.render(text); return md.render(text);
} }