-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
110 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ node_modules/ | |
*.log | ||
.DS_Store | ||
yarn.lock | ||
!/index.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import type {HtmlOptions as GfmFootnoteHtmlOptions} from 'micromark-extension-gfm-footnote' | ||
import type {Options as GfmStrikethroughOptions} from 'micromark-extension-gfm-strikethrough' | ||
|
||
export {gfm, gfmHtml} from './lib/index.js' | ||
|
||
/** | ||
* Configuration for `gfmHtml` of `micromark-extension-gfm`. | ||
*/ | ||
export interface HtmlOptions extends GfmFootnoteHtmlOptions {} | ||
|
||
/** | ||
* Configuration for `gfm` of `micromark-extension-gfm`. | ||
*/ | ||
export interface Options extends GfmStrikethroughOptions {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,2 @@ | ||
/** | ||
* @typedef {import('micromark-extension-gfm-footnote').HtmlOptions} HtmlOptions | ||
* @typedef {import('micromark-extension-gfm-strikethrough').Options} Options | ||
* @typedef {import('micromark-util-types').Extension} Extension | ||
* @typedef {import('micromark-util-types').HtmlExtension} HtmlExtension | ||
*/ | ||
|
||
import { | ||
combineExtensions, | ||
combineHtmlExtensions | ||
} from 'micromark-util-combine-extensions' | ||
import { | ||
gfmAutolinkLiteral, | ||
gfmAutolinkLiteralHtml | ||
} from 'micromark-extension-gfm-autolink-literal' | ||
import {gfmFootnote, gfmFootnoteHtml} from 'micromark-extension-gfm-footnote' | ||
import { | ||
gfmStrikethrough, | ||
gfmStrikethroughHtml | ||
} from 'micromark-extension-gfm-strikethrough' | ||
import {gfmTable, gfmTableHtml} from 'micromark-extension-gfm-table' | ||
import {gfmTagfilterHtml} from 'micromark-extension-gfm-tagfilter' | ||
import { | ||
gfmTaskListItem, | ||
gfmTaskListItemHtml | ||
} from 'micromark-extension-gfm-task-list-item' | ||
|
||
/** | ||
* Create an extension for `micromark` to enable GFM syntax. | ||
* | ||
* @param {Options | null | undefined} [options] | ||
* Configuration (optional). | ||
* | ||
* Passed to `micromark-extens-gfm-strikethrough`. | ||
* @returns {Extension} | ||
* Extension for `micromark` that can be passed in `extensions` to enable GFM | ||
* syntax. | ||
*/ | ||
export function gfm(options) { | ||
return combineExtensions([ | ||
gfmAutolinkLiteral(), | ||
gfmFootnote(), | ||
gfmStrikethrough(options), | ||
gfmTable(), | ||
gfmTaskListItem() | ||
]) | ||
} | ||
|
||
/** | ||
* Create an extension for `micromark` to support GFM when serializing to HTML. | ||
* | ||
* @param {HtmlOptions | null | undefined} [options] | ||
* Configuration (optional). | ||
* | ||
* Passed to `micromark-extens-gfm-footnote`. | ||
* @returns {HtmlExtension} | ||
* Extension for `micromark` that can be passed in `htmlExtensions` to | ||
* support GFM when serializing to HTML. | ||
*/ | ||
export function gfmHtml(options) { | ||
return combineHtmlExtensions([ | ||
gfmAutolinkLiteralHtml(), | ||
gfmFootnoteHtml(options), | ||
gfmStrikethroughHtml(), | ||
gfmTableHtml(), | ||
gfmTagfilterHtml(), | ||
gfmTaskListItemHtml() | ||
]) | ||
} | ||
// Note: types exposed from `index.d.ts`. | ||
export {gfm, gfmHtml} from './lib/index.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/** | ||
* @import {Options, HtmlOptions} from 'micromark-extension-gfm' | ||
* @import {Extension, HtmlExtension} from 'micromark-util-types' | ||
*/ | ||
|
||
import { | ||
combineExtensions, | ||
combineHtmlExtensions | ||
} from 'micromark-util-combine-extensions' | ||
import { | ||
gfmAutolinkLiteral, | ||
gfmAutolinkLiteralHtml | ||
} from 'micromark-extension-gfm-autolink-literal' | ||
import {gfmFootnote, gfmFootnoteHtml} from 'micromark-extension-gfm-footnote' | ||
import { | ||
gfmStrikethrough, | ||
gfmStrikethroughHtml | ||
} from 'micromark-extension-gfm-strikethrough' | ||
import {gfmTable, gfmTableHtml} from 'micromark-extension-gfm-table' | ||
import {gfmTagfilterHtml} from 'micromark-extension-gfm-tagfilter' | ||
import { | ||
gfmTaskListItem, | ||
gfmTaskListItemHtml | ||
} from 'micromark-extension-gfm-task-list-item' | ||
|
||
/** | ||
* Create an extension for `micromark` to enable GFM syntax. | ||
* | ||
* @param {Options | null | undefined} [options] | ||
* Configuration (optional). | ||
* | ||
* Passed to `micromark-extens-gfm-strikethrough`. | ||
* @returns {Extension} | ||
* Extension for `micromark` that can be passed in `extensions` to enable GFM | ||
* syntax. | ||
*/ | ||
export function gfm(options) { | ||
return combineExtensions([ | ||
gfmAutolinkLiteral(), | ||
gfmFootnote(), | ||
gfmStrikethrough(options), | ||
gfmTable(), | ||
gfmTaskListItem() | ||
]) | ||
} | ||
|
||
/** | ||
* Create an extension for `micromark` to support GFM when serializing to HTML. | ||
* | ||
* @param {HtmlOptions | null | undefined} [options] | ||
* Configuration (optional). | ||
* | ||
* Passed to `micromark-extens-gfm-footnote`. | ||
* @returns {HtmlExtension} | ||
* Extension for `micromark` that can be passed in `htmlExtensions` to | ||
* support GFM when serializing to HTML. | ||
*/ | ||
export function gfmHtml(options) { | ||
return combineHtmlExtensions([ | ||
gfmAutolinkLiteralHtml(), | ||
gfmFootnoteHtml(options), | ||
gfmStrikethroughHtml(), | ||
gfmTableHtml(), | ||
gfmTagfilterHtml(), | ||
gfmTaskListItemHtml() | ||
]) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters