Skip to content

Commit

Permalink
fix: add default value hint for gfm
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianCataldo committed Sep 21, 2022
1 parent 0bea60b commit 90e7770
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ import type { HTML, Parent, Root } from 'mdast';
/* —————————————————————————————————————————————————————————————————————————— */

export interface Settings {
/** Load GitHub flavored Markdown again (useful for Astro) */
/** Load GitHub flavored Markdown again (useful for Astro).
*
* **Default**: `true`
*/
useGfm?: boolean;
}
const remarkEmbed: Plugin<[Settings?], Root> =
Expand Down

0 comments on commit 90e7770

Please sign in to comment.