Skip to content

Commit 006745e

Browse files
ci: apply automated fixes
1 parent 393581c commit 006745e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/utils/markdown/plugins/collectHeadings.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ export type MarkdownHeading = {
99
level: number
1010
}
1111

12-
export function rehypeCollectHeadings(tree, file, initialHeadings?: MarkdownHeading[]) {
12+
export function rehypeCollectHeadings(
13+
tree,
14+
file,
15+
initialHeadings?: MarkdownHeading[],
16+
) {
1317
const headings = initialHeadings ?? []
1418

1519
return function collectHeadings(tree, file: any) {

0 commit comments

Comments
 (0)