(zipFile, path, styles)
| 1724 | }); |
| 1725 | |
| 1726 | function readNumberingFromZipFile(zipFile, path, styles) { |
| 1727 | return xmlFileReader({ |
| 1728 | filename: path, |
| 1729 | readElement: function(element) { |
| 1730 | return numberingXml.readNumberingXml(element, {styles: styles}); |
| 1731 | }, |
| 1732 | defaultValue: numberingXml.defaultNumbering |
| 1733 | })(zipFile); |
| 1734 | } |
| 1735 | |
| 1736 | function readStylesFromZipFile(zipFile, path) { |
| 1737 | return xmlFileReader({ |