Skip to content

Commit

Permalink
ENH: add more grid directives (#235)
Browse files Browse the repository at this point in the history
* feat: add more grid directives

* chore: run linter
  • Loading branch information
agoose77 committed Apr 25, 2024
1 parent 402c402 commit 004f6c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/myst.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { unified } from 'unified';
import { VFile } from 'vfile';
import { PageFrontmatter, validatePageFrontmatter } from 'myst-frontmatter';
import { cardDirective } from 'myst-ext-card';
import { gridDirective } from 'myst-ext-grid';
import { gridDirectives } from 'myst-ext-grid';
import { tabDirectives } from 'myst-ext-tabs';
import { proofDirective } from 'myst-ext-proof';
import { exerciseDirectives } from 'myst-ext-exercise';
Expand Down Expand Up @@ -57,10 +57,10 @@ export function markdownParse(text: string): Root {
markdownit: { linkify: true },
directives: [
cardDirective,
gridDirective,
...gridDirectives,
proofDirective,
...tabDirectives,
...exerciseDirectives
...exerciseDirectives,
...tabDirectives
],
roles: []
});
Expand Down

0 comments on commit 004f6c1

Please sign in to comment.