(docAttributes)
| 40 | } |
| 41 | |
| 42 | openXml(docAttributes) { |
| 43 | const xml = this._xml; |
| 44 | // <?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
| 45 | xml.push('<?xml'); |
| 46 | pushAttributes(xml, docAttributes); |
| 47 | xml.push('?>\n'); |
| 48 | } |
| 49 | |
| 50 | openNode(name, attributes) { |
| 51 | const parent = this.tos; |