markdown
markdown copied to clipboard
ReadMe's flavored Markdown parser and React-based rendering engine.
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.19.3 to 7.20.2. Release notes Sourced from @babel/core's releases. v7.20.2 (2022-11-04) :bug: Bug Fix babel-core, babel-helper-create-class-features-plugin, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-simple-access, babel-node, babel-plugin-transform-block-scoping, babel-plugin-transform-classes, babel-plugin-transform-react-constant-elements, babel-preset-env, babel-standalone, babel-types #15124...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) from 7.19.1 to 7.19.6. Release notes Sourced from @babel/plugin-transform-runtime's releases. v7.19.6 (2022-10-20) Thanks @lomirus for your first PR! :eyeglasses: Spec Compliance babel-plugin-proposal-decorators #15059 Ensure non-static decorators are applied...
``` ┌──────────────────────────────────────────────────────────────────────────────┐ │ Manual Review │ │ Some vulnerabilities require your attention to resolve │ │ │ │ Visit https://go.npm.me/audit-guide for additional guidance │ └──────────────────────────────────────────────────────────────────────────────┘ ┌───────────────┬──────────────────────────────────────────────────────────────┐ │ High │ Regular...
> Looks good. A bit bummed about having to move image serialization back to the magic block format… any thoughts on a way to manage captions and sizing in RDMD-flavored...
Let's add a `previewText` export method to the RDMD engine to [loop through the AST](https://www.npmjs.com/package/unist-util-flatmap) and remove any non-paragraph nodes. Then we can [transform that to plain-text](https://www.npmjs.com/package/remark-plain-text), and do the...
I'd like to be able to pass a configuration option into `rdmd.html(text,options)` that lets me turn off some of the sanitization. For example, I'd like to allow `iframe`s and `script`...
We should probably pull the ReadMe-side TOC styles in to this repo!
https://github.github.com/gfm/#emphasis-and-strong-emphasis ``` > JSON.stringify(window.RDMD.mdast("***strong** emphasis*"), null, 2) "{ "type": "root", "children": [ { "type": "paragraph", "children": [ { "type": "strong", "children": [ { "type": "text", "value": "*strong" } ] },...
https://github.github.com/gfm/#example-49 ``` > JSON.stringify(window.RDMD.mdast("## "), null, 2) "{ "type": "root", "children": [ { "type": "heading", "depth": 1, "children": [] } ] }" ```