-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to customize codeblock tags #82
Comments
I want to to support this. Unfortunately, processor plugin settings seem to be pretty difficult due to API limitations. There's a workaround in I really don't want to patch |
You could add an {
// ...
"eslint-plugin-markdown": {
"languages": [
"ts",
"js"
]
}
} |
We just merged an ESLint RFC that will will provide support for this! https://github.com/eslint/rfcs/tree/master/designs/2018-processors-improvements Once it's implemented in ESLint, we'll be able to add support into the plugin. |
/cc @btmills eslint@6 was released, any news about this issue? |
Would also like to know about progress on this. |
I have a specific use case for this feature. I work on a project in which we display code examples in The specific logic for this lib is that it ignores So far, my workaround is to prefix each of these blocks with |
Currently working with Vue and we'd like to document our examples in markdown with this plugin. However, we have been using:
I'd like to be able to customize the tags used for the code block.
The text was updated successfully, but these errors were encountered: