mirror of
https://github.com/borbann-platform/srs-document.git
synced 2025-12-19 04:34:05 +01:00
67 lines
2.5 KiB
JavaScript
67 lines
2.5 KiB
JavaScript
"use strict";
|
|
const enumerate = require("./enumerate-DSh8p1uS.cjs");
|
|
const macros = {
|
|
answerline: { signature: "o" },
|
|
fillin: { signature: "o o" },
|
|
fullwidth: { signature: "m" },
|
|
fillwidthlines: { signature: "m" },
|
|
fillwidthdottedlines: { signature: "m" },
|
|
fillwidthgrid: { signature: "m" },
|
|
makeemptybox: { signature: "m" },
|
|
CorrectChoiceEmphasis: {
|
|
signature: "m",
|
|
renderInfo: { breakAround: true }
|
|
},
|
|
SolutionEmphasis: { signature: "m", renderInfo: { breakAround: true } },
|
|
uplevel: { signature: "m", renderInfo: { breakAround: true } },
|
|
checkboxchar: { signature: "m", renderInfo: { breakAround: true } },
|
|
checkedchar: { signature: "m", renderInfo: { breakAround: true } },
|
|
pointname: { signature: "m", renderInfo: { breakAround: true } },
|
|
marginpointname: { signature: "m", renderInfo: { breakAround: true } },
|
|
extrawidth: { signature: "m", renderInfo: { breakAround: true } },
|
|
pointformat: { signature: "m", renderInfo: { breakAround: true } },
|
|
bonuspointformat: { signature: "m", renderInfo: { breakAround: true } },
|
|
totalformat: { signature: "m", renderInfo: { breakAround: true } },
|
|
qformat: { signature: "m", renderInfo: { breakAround: true } },
|
|
titledquestion: { signature: "m o", renderInfo: { breakAround: true } },
|
|
pointpoints: { signature: "m m", renderInfo: { breakAround: true } },
|
|
bonuspointpoints: { signature: "m m", renderInfo: { breakAround: true } }
|
|
};
|
|
const environments = {
|
|
choices: {
|
|
signature: "o",
|
|
processContent: (nodes) => enumerate.cleanEnumerateBody(nodes, "choice")
|
|
},
|
|
checkboxes: {
|
|
signature: "o",
|
|
processContent: (nodes) => enumerate.cleanEnumerateBody(nodes, "choice")
|
|
},
|
|
oneparchoices: {
|
|
signature: "o",
|
|
processContent: (nodes) => enumerate.cleanEnumerateBody(nodes, "choice")
|
|
},
|
|
oneparcheckboxes: {
|
|
signature: "o",
|
|
processContent: (nodes) => enumerate.cleanEnumerateBody(nodes, "choice")
|
|
},
|
|
parts: {
|
|
signature: "o",
|
|
processContent: (nodes) => enumerate.cleanEnumerateBody(nodes, "part")
|
|
},
|
|
subparts: {
|
|
signature: "o",
|
|
processContent: (nodes) => enumerate.cleanEnumerateBody(nodes, "subpart")
|
|
},
|
|
subsubparts: {
|
|
signature: "o",
|
|
processContent: (nodes) => enumerate.cleanEnumerateBody(nodes, "subsubpart")
|
|
},
|
|
questions: {
|
|
signature: "o",
|
|
processContent: (nodes) => enumerate.cleanEnumerateBody(nodes, "question")
|
|
}
|
|
};
|
|
exports.environments = environments;
|
|
exports.macros = macros;
|
|
//# sourceMappingURL=provides-gOjhEUvC.cjs.map
|