We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4e26e8 commit 7ad27fbCopy full SHA for 7ad27fb
src/command/render/filters.ts
@@ -653,8 +653,8 @@ function resolveFilterExtension(
653
// the quarto-ext org. filter them out here (that allows them to remain
654
// referenced in the yaml so we don't break code in the wild)
655
extensions = extensions?.filter((ext) => {
656
- return ext.id.organization !== kQuartoExtOrganization &&
657
- !kQuartoExtBuiltIn.includes(ext.id.name);
+ return !(ext.id.organization === kQuartoExtOrganization &&
+ kQuartoExtBuiltIn.includes(ext.id.name));
658
});
659
if (extensions.length === 0) {
660
return [];
0 commit comments