(self, destination_zip: ZipFileInterface, topic_dir: str)
| 201 | self._save_document_references(destination_zip) |
| 202 | |
| 203 | def _save_viewpoints(self, destination_zip: ZipFileInterface, topic_dir: str) -> None: |
| 204 | if not self.markup or not (viewpoints := self.markup.viewpoints): |
| 205 | return |
| 206 | for vpt in viewpoints: |
| 207 | if vpt.viewpoint: |
| 208 | self.viewpoints[vpt.viewpoint].save(destination_zip, topic_dir, vpt) |
| 209 | |
| 210 | def _save_xml(self, destination_zip: ZipFileInterface, item: Any, target: str) -> None: |
| 211 | if self._topic_dir is None: |