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 80f7041 commit 008f7f4Copy full SHA for 008f7f4
src/execute/ojs/compile.ts
@@ -70,7 +70,6 @@ import {
70
pandocBlock,
71
pandocCode,
72
pandocDiv,
73
- pandocFigCaption,
74
pandocRawStr,
75
} from "../../core/pandoc/codegen.ts";
76
@@ -615,9 +614,10 @@ export async function ojsCompile(
615
614
);
616
makeSubFigures(specs);
617
if (cell.options?.[kCellFigCap]) {
618
- const cap = pandocFigCaption();
619
- div.push(cap);
620
- cap.push(pandocRawStr(cell.options[kCellFigCap] as string));
+ //const cap = pandocFigCaption();
+ //div.push(cap);
+ //cap.push(pandocRawStr(cell.options[kCellFigCap] as string));
+ div.push(pandocRawStr(cell.options[kCellFigCap] as string));
621
}
622
} else {
623
// FIXME: this should include better file and LOC information!
0 commit comments