-
My Markdown has YAML frontmatter. eg: ---
id: doc2
title: Document Number 2
---
This is a link to [another document.](doc3.md) This is a link to an [external page.](http://www.example.com/) When linting with both the Am I doing something wrong or should I report this as a bug? My basic Remark config looks like this: exports.plugins = [
'remark-frontmatter',
'remark-external-links',
'remark-capitalize',
'remark-preset-lint-markdown-style-guide'
];
exports.settings = {
strong: '*'
}; |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 14 replies
-
That should indeed work. Can you make a reproduction for this? |
Beta Was this translation helpful? Give feedback.
-
What means when you're running @wooorm I'm also wondering can we support |
Beta Was this translation helpful? Give feedback.
remark-mdx@1
is not compatible withremark@13
yet, butremark-cli
andremark-lint
have been upgraded toremark@13.0
.What means when you're running
eslint
witheslint-mdx
,remark@12
is used, but when you're runningremark-cli
,remark@13
is used.@wooorm I'm also wondering can we support
remark@13
forremark-mdx@1
at the same time, sinceremark-mdx@2
is not ready yet.