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 c0e934f commit c7dfec1Copy full SHA for c7dfec1
packages/myst-to-jats/src/index.ts
@@ -285,6 +285,7 @@ type Handlers = {
285
si: Handler<GenericNode>;
286
proof: Handler<GenericNode>;
287
algorithmLine: Handler<AlgorithmLine>;
288
+ outputs: Handler<GenericNode>;
289
output: Handler<GenericNode>;
290
embed: Handler<GenericNode>;
291
supplementaryMaterial: Handler<SupplementaryMaterial>;
@@ -632,6 +633,9 @@ const handlers: Handlers = {
632
633
state.renderChildren(node);
634
state.closeNode();
635
},
636
+ outputs(node, state) {
637
+ state.renderChildren(node);
638
+ },
639
output(node, state) {
640
if (state.data.isInContainer) {
641
if (!node.data?.[0]) return;
0 commit comments