Titus
Titus
(or screencast) I personally really like it when there’s an image of how a tool looks in the docs, especially when there’s a lot of docs. I also think more...
Spin-off from GH-15. Some points I walked into: - I’m using `function foo(...)` and the like for user-defined functions, e.g., `function attacher(mdast[, options])`, these are still visible in was (e.g.,...
Hi! remark is switching to a new parser (and compiler) internally ([micromark](https://github.com/micromark/micromark), [`remarkjs/remark#536`](https://github.com/remarkjs/remark/pull/536)), which will break this plugin. Keep an eye out for remark-footnotes, remark-frontmatter, remark-gfm, remark-math, and other syntax...
Hi folks! 👋 Shameless plug, but you should consider using [`refractor`](https://github.com/wooorm/refractor)! It provides syntax highlighting using Prism, but outputs a virtual DOM instead of HTML (so you don’t use `dangerouslySetInnerHTML`...
Seems that the `.node` extension trips up Node when running a file as a module (ESM). To repro on node 12, 14, 16, 17: ```sh mkdir example cd example npm...
* Add new `JSX` export, similar to `GENERATOR`, with handlers for JSX nodes * Add unit tests for JSX nodes * Add JSX example --- * I’m a fan of...
### Initial checklist - [X] I read the [support docs](https://mdxjs.com/community/support/) - [X] I read the [contributing guide](https://mdxjs.com/community/contribute/) - [X] I agree to follow the [code of conduct](https://github.com/mdx-js/.github/blob/HEAD/code-of-conduct.md) - [X] I...
[`remark`](https://github.com/wooorm/remark) and [`remark-lint`](https://github.com/wooorm/remark-lint) changed a bunch since it was implemented here. Most notably, see the [`[email protected]`](https://github.com/wooorm/remark-lint/releases/tag/6.0.0) changelog, and the [releases for `remark`](https://github.com/wooorm/remark/releases) page to find out more. Or, feel free...
### Subject of the feature There are two main places where parsing is done that is (potentially) useless. - [content](https://github.com/micromark/micromark/blob/0066066f441913d9e18d122726d08290197c885b/lib/tokenize/content.js#L97): At the end of a line in content, we parse...
### Subject of the feature Given that on large markdown files we are dealing with tons (literally, 100k or so) of events, improving performance might be switching from arrays to...