Skip to content

Commit 9fa002f

Browse files
authored
Update src/myst.ts
1 parent 38270d4 commit 9fa002f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/myst.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,7 @@ export function markdownParse(text: string, options: Partial<AllOptions>): Root
9292
return mdast as Root;
9393
}
9494

95-
export function parseContent(
96-
notebook: StaticNotebook,
97-
options: MySTOptions
98-
): Promise<void> {
95+
export function parseContent(notebook: StaticNotebook, options: MySTOptions): Promise<void> {
9996
const cells = getCellList(notebook)?.filter(
10097
// In the future, we may want to process the code cells as well, but not now
10198
cell => cell.model.type === 'markdown'

0 commit comments

Comments
 (0)