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 90852f2 commit e111485Copy full SHA for e111485
src/command/render/pandoc.ts
@@ -707,6 +707,14 @@ export async function runPandoc(
707
formatFilterParams["custom-writer"] = allDefaults.to;
708
allDefaults.to = resourcePath("filters/customwriter/customwriter.lua");
709
}
710
+ if (Deno.env.get("QUARTO_ALLENMANNING_WORKAROUND_CONFLUENCE") === undefined) {
711
+ if (allDefaults.writer?.match(/[.]lua$/)) {
712
+ formatFilterParams["custom-writer"] = allDefaults.writer;
713
+ allDefaults.writer = resourcePath(
714
+ "filters/customwriter/customwriter.lua",
715
+ );
716
+ }
717
718
719
// set up the custom .qmd reader
720
if (allDefaults.from) {
0 commit comments