We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09c92b2 commit a002893Copy full SHA for a002893
src/format/headings.ts
@@ -65,7 +65,7 @@ type Heading_with_hProps = Heading & {
65
66
export function linkify_headings(): Transformer {
67
return function (tree, { data }: custom_vfile) {
68
- if (data.docs_type !== "docs" && data.docs_type !== "blog") return;
+ if (data.docs_type !== "docs" && data.docs_type !== "blog" && data.docs_type !== "faq") return;
69
70
visit(tree, "heading", (node: Heading_with_hProps) => {
71
const prev_section = data.section_stack[data.section_stack.length - 1];
0 commit comments