Skip to content

Commit

Permalink
feat: add more grid directives
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Apr 25, 2024
1 parent 01334a2 commit f5a753e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 @@ -56,10 +56,10 @@ export function markdownParse(text: string): Root {
return mystParse(content, {
directives: [
cardDirective,
gridDirective,
...gridDirectives,
proofDirective,
...exerciseDirectives,
...tabDirectives,
...exerciseDirectives
],
roles: []
});
Expand Down

0 comments on commit f5a753e

Please sign in to comment.