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 0e28a30 commit 09529f2Copy full SHA for 09529f2
packages/markdown-docx/src/CiceroMarkToOOXML/index.js
@@ -137,11 +137,9 @@ class CiceroMarkToOOXMLTransfomer {
137
* Transforms the given CiceroMark JSON to OOXML
138
*
139
* @param {Object} ciceromark CiceroMark JSON to be converted
140
- * @param {string} ooxml Initial OOXML string
141
* @returns {string} Converted OOXML string i.e. CicecoMark->OOXML
142
*/
143
- toOOXML(ciceromark, ooxml = '') {
144
- this.globalOOXML = ooxml;
+ toOOXML(ciceromark) {
145
ciceromark.nodes.forEach(node => {
146
this.getNodes(node);
147
});
0 commit comments