Skip to content

Commit 09529f2

Browse files
K-Kumar-01algomaster99
authored andcommitted
refactor(markdown-docx): remove argument ooxml in toOOXML func - #397 (#412)
Signed-off-by: k-kumar-01 <[email protected]>
1 parent 0e28a30 commit 09529f2

File tree

1 file changed

+1
-3
lines changed
  • packages/markdown-docx/src/CiceroMarkToOOXML

1 file changed

+1
-3
lines changed

packages/markdown-docx/src/CiceroMarkToOOXML/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,9 @@ class CiceroMarkToOOXMLTransfomer {
137137
* Transforms the given CiceroMark JSON to OOXML
138138
*
139139
* @param {Object} ciceromark CiceroMark JSON to be converted
140-
* @param {string} ooxml Initial OOXML string
141140
* @returns {string} Converted OOXML string i.e. CicecoMark->OOXML
142141
*/
143-
toOOXML(ciceromark, ooxml = '') {
144-
this.globalOOXML = ooxml;
142+
toOOXML(ciceromark) {
145143
ciceromark.nodes.forEach(node => {
146144
this.getNodes(node);
147145
});

0 commit comments

Comments
 (0)