Skip to content

Commit

Permalink
Update src/myst.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tavin authored Mar 26, 2023
1 parent 38270d4 commit 9fa002f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/myst.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,7 @@ export function markdownParse(text: string, options: Partial<AllOptions>): Root
return mdast as Root;
}

export function parseContent(
notebook: StaticNotebook,
options: MySTOptions
): Promise<void> {
export function parseContent(notebook: StaticNotebook, options: MySTOptions): Promise<void> {
const cells = getCellList(notebook)?.filter(
// In the future, we may want to process the code cells as well, but not now
cell => cell.model.type === 'markdown'
Expand Down

0 comments on commit 9fa002f

Please sign in to comment.