vscode-hediet-power-tools icon indicating copy to clipboard operation
vscode-hediet-power-tools copied to clipboard

Feature request: Ability to toggle Rich Language Features for Markdown code blocks per document or code block

Open AjayKMehta opened this issue 4 years ago • 0 comments

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();
}

AjayKMehta avatar Sep 02 '21 14:09 AjayKMehta