Lines Matching refs:docx
3 namespace dokuwiki\plugin\wordimport\docx;
20 $xml = $this->docx->loadXMLFile('/word/document.xml');
58 return new Table($this->docx, $p);
63 … if (in_array($match[0]->attributes('w', true)->ascii, $this->docx->getConf('codefonts'))) {
64 return new CodeBlock($this->docx, $p);
69 …if ($this->docx->getStyles()->hasStyle($p, ['heading 1', 'heading 2', 'heading 3', 'heading 4', 'h…
70 return new Heading($this->docx, $p);
74 if ($this->docx->getStyles()->hasStyle($p, ['list paragraph'])) {
75 return new ListItem($this->docx, $p);
80 return new Image($this->docx, $p);
85 return new Paragraph($this->docx, $p);