vscode-hediet-power-tools
vscode-hediet-power-tools copied to clipboard
Feature request: Ability to toggle Rich Language Features for Markdown code blocks per document or code block
Thank you for making such a great extension that I use daily!
I love the the ability to have Rich Language Feature in Markdown code blocks but it would be great if you could disable it for certain code blocks especially if they contain code fragments (for illustration purposes) which generate false positives. Maybe this can be done by a special comment above the code block? At document-level would also be nice as sometimes you don't want it to apply to a document but still need it for other files in the workspace.
Example:
for (int i = 0; i < 10; i++)
{
.... // Not valid so generates warnings
Foo();
}