Titus
Titus
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. I will create a generic directives plugin though, time permitting, in this...
Iβm not sure if it should be in this project (or in `check-links`), but maybe itβs of interest for something to support URLs like: ``` https://github.com/davidtheclark/remark-lint-no-dead-urls#readme ``` As in, parse...
### Subject of the feature Add a new policy that describes where and how funds are allocated. ### Problem It is currently unclear how one could file expenses (e.g., trips),...
Hi! remark is switching to a new parser internally ([micromark](https://github.com/micromark/micromark), see [`remarkjs/remark#536`](https://github.com/remarkjs/remark/pull/536) for more info). From a quick glance at the code, it seems this plugin should be fine. However,...
https://github.com/s0/remark-tree-sitter/blob/07ba52f3a7c50c4a14ce2f0fee0b5e4a0453507a/package.json#L19-L22 The value on npm is different than that on GH!
Hi! remark is switching to a new parser internally ([micromark](https://github.com/micromark/micromark), see [`remarkjs/remark#536`](https://github.com/remarkjs/remark/pull/536) for more info). From a quick glance at the code, it seems this plugin should be fine. However,...
```markdown [^:] [^:]: a ``` Yields: ```html 1 Footnotes a β© ``` Yields: [^:] [^:]: a --- Expected: `
#### Problem Take for example: ```markdown [^a b]: # c xxx[^a b]. ``` Yields: [^a b]: # c xxx[^a b]. --- For some reason, the `a\nb` disappear from both places....
```markdown a www. b ``` Yields: a www. b --- It seems that when `www.` is found, it is then parsed *again* as a domain, of which the dot makes...
The prefix `www`, for autolink literals, only matches when lowercase, in comments. This is different from how the protocol prefix (`http://`, `https://`) is handled, which is matched case-insensitive. It is...