-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes GH-22. Reviewed-by: with-heart <with.heart+git@pm.me> Reviewed-by: Christian Murphy <christian.murphy.42@gmail.com>
- Loading branch information
Showing
5 changed files
with
525 additions
and
123 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 |
---|---|---|
@@ -1,63 +1,8 @@ | ||
/** | ||
* @typedef {import('unist').Node} Node | ||
* @typedef {import('hast').Root} HastRoot | ||
* @typedef {import('mdast').Root} MdastRoot | ||
* @typedef {import('mdast-util-to-hast').Options} Options | ||
* @typedef {import('unified').Processor<any, any, any, any>} Processor | ||
* | ||
* @typedef {import('mdast-util-to-hast')} DoNotTouchAsThisImportIncludesRawInTree | ||
* @typedef {import('./lib/index.js').Options} Options | ||
* @typedef {import('./lib/index.js').Processor} Processor | ||
*/ | ||
|
||
import {toHast} from 'mdast-util-to-hast' | ||
|
||
// Note: the `<MdastRoot, HastRoot>` overload doesn’t seem to work :'( | ||
|
||
/** | ||
* Plugin to bridge or mutate to rehype. | ||
* | ||
* If a destination is given, runs the destination with the new hast tree | ||
* (bridge-mode). | ||
* Without destination, returns the hast tree: further plugins run on that tree | ||
* (mutate-mode). | ||
* | ||
* @param destination | ||
* Optional unified processor. | ||
* @param options | ||
* Options passed to `mdast-util-to-hast`. | ||
*/ | ||
const remarkRehype = | ||
/** @type {(import('unified').Plugin<[Processor, Options?]|[null|undefined, Options?]|[Options]|[], MdastRoot>)} */ | ||
( | ||
function (destination, options) { | ||
return destination && 'run' in destination | ||
? bridge(destination, options) | ||
: mutate(destination || options) | ||
} | ||
) | ||
import remarkRehype from './lib/index.js' | ||
|
||
export default remarkRehype | ||
|
||
/** | ||
* Bridge-mode. | ||
* Runs the destination with the new hast tree. | ||
* | ||
* @type {import('unified').Plugin<[Processor, Options?], MdastRoot>} | ||
*/ | ||
function bridge(destination, options) { | ||
return (node, file, next) => { | ||
destination.run(toHast(node, options), file, (error) => { | ||
next(error) | ||
}) | ||
} | ||
} | ||
|
||
/** | ||
* Mutate-mode. | ||
* Further transformers run on the nlcst tree. | ||
* | ||
* @type {import('unified').Plugin<[Options?]|void[], MdastRoot, HastRoot>} | ||
*/ | ||
function mutate(options) { | ||
// @ts-expect-error: assume a corresponding node is returned for `toHast`. | ||
return (node) => toHast(node, options) | ||
} |
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,71 @@ | ||
/** | ||
* @typedef {import('hast').Root} HastRoot | ||
* @typedef {import('mdast').Root} MdastRoot | ||
* @typedef {import('mdast-util-to-hast').Options} Options | ||
* @typedef {import('unified').Processor<any, any, any, any>} Processor | ||
* | ||
* @typedef {import('mdast-util-to-hast')} DoNotTouchAsThisImportIncludesRawInTree | ||
*/ | ||
|
||
import {toHast} from 'mdast-util-to-hast' | ||
|
||
// Note: the `<MdastRoot, HastRoot>` overload doesn’t seem to work :'( | ||
|
||
/** | ||
* Plugin that turns markdown into HTML to support rehype. | ||
* | ||
* * If a destination processor is given, that processor runs with a new HTML | ||
* (hast) tree (bridge-mode). | ||
* As the given processor runs with a hast tree, and rehype plugins support | ||
* hast, that means rehype plugins can be used with the given processor. | ||
* The hast tree is discarded in the end. | ||
* It’s highly unlikely that you want to do this. | ||
* * The common case is to not pass a destination processor, in which case the | ||
* current processor continues running with a new HTML (hast) tree | ||
* (mutate-mode). | ||
* As the current processor continues with a hast tree, and rehype plugins | ||
* support hast, that means rehype plugins can be used after | ||
* `remark-rehype`. | ||
* It’s likely that this is what you want to do. | ||
* | ||
* @param destination | ||
* Optional unified processor. | ||
* @param options | ||
* Options passed to `mdast-util-to-hast`. | ||
*/ | ||
const remarkRehype = | ||
/** @type {(import('unified').Plugin<[Processor, Options?]|[null|undefined, Options?]|[Options]|[], MdastRoot>)} */ | ||
( | ||
function (destination, options) { | ||
return destination && 'run' in destination | ||
? bridge(destination, options) | ||
: mutate(destination || options) | ||
} | ||
) | ||
|
||
export default remarkRehype | ||
|
||
/** | ||
* Bridge-mode. | ||
* Runs the destination with the new hast tree. | ||
* | ||
* @type {import('unified').Plugin<[Processor, Options?], MdastRoot>} | ||
*/ | ||
function bridge(destination, options) { | ||
return (node, file, next) => { | ||
destination.run(toHast(node, options), file, (error) => { | ||
next(error) | ||
}) | ||
} | ||
} | ||
|
||
/** | ||
* Mutate-mode. | ||
* Further plugins run on the hast tree. | ||
* | ||
* @type {import('unified').Plugin<[Options?]|void[], MdastRoot, HastRoot>} | ||
*/ | ||
function mutate(options) { | ||
// @ts-expect-error: assume a corresponding node is returned by `toHast`. | ||
return (node) => toHast(node, options) | ||
} |
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
Oops, something went wrong.