├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── docs ├── 0.index.js ├── 1.index.js ├── cf1f90b2feef7ead7222.module.wasm ├── index.html └── index.js ├── docx-core ├── Cargo.toml ├── bindings │ ├── FontGroup.ts │ ├── FontScheme.ts │ ├── FontSchemeFont.ts │ └── Theme.ts ├── examples │ ├── alignment.rs │ ├── bookmark.rs │ ├── comment.rs │ ├── custom_property.rs │ ├── custom_xml.rs │ ├── data_binding.rs │ ├── dirty_toc.rs │ ├── doc_id.rs │ ├── even_header.rs │ ├── first_header.rs │ ├── font.rs │ ├── font_size.rs │ ├── footer.rs │ ├── footnotes.rs │ ├── header.rs │ ├── header_with_page_num.rs │ ├── hello.rs │ ├── history.rs │ ├── hyperlink.rs │ ├── image_floating.rs │ ├── image_in_header.rs │ ├── image_inline.rs │ ├── image_inline_rotate.rs │ ├── image_reader.rs │ ├── indent.rs │ ├── nested_comment.rs │ ├── numbering.rs │ ├── outline_lvl.rs │ ├── page_margin.rs │ ├── page_size.rs │ ├── reader.rs │ ├── sdt.rs │ ├── section.rs │ ├── style.rs │ ├── table.rs │ ├── table_border.rs │ ├── toc_simple.rs │ ├── toc_with_comment.rs │ ├── toc_with_hyperlink.rs │ ├── toc_with_item.rs │ ├── toc_with_style_level.rs │ ├── toc_with_tc.rs │ └── web_ext.rs ├── src │ ├── documents │ │ ├── bookmark_id.rs │ │ ├── build_xml.rs │ │ ├── comments.rs │ │ ├── comments_extended.rs │ │ ├── content_types.rs │ │ ├── custom_item.rs │ │ ├── custom_item_property.rs │ │ ├── custom_item_rels.rs │ │ ├── doc_props │ │ │ ├── app.rs │ │ │ ├── core.rs │ │ │ ├── custom.rs │ │ │ └── mod.rs │ │ ├── document.rs │ │ ├── document_rels.rs │ │ ├── elements │ │ │ ├── a_graphic.rs │ │ │ ├── a_graphic_data.rs │ │ │ ├── abstract_numbering.rs │ │ │ ├── adjust_right_ind.rs │ │ │ ├── based_on.rs │ │ │ ├── bold.rs │ │ │ ├── bold_cs.rs │ │ │ ├── bookmark_end.rs │ │ │ ├── bookmark_start.rs │ │ │ ├── br.rs │ │ │ ├── cant_split.rs │ │ │ ├── caps.rs │ │ │ ├── cell_margins.rs │ │ │ ├── character_spacing.rs │ │ │ ├── color.rs │ │ │ ├── comment.rs │ │ │ ├── comment_extended.rs │ │ │ ├── comment_range_end.rs │ │ │ ├── comment_range_start.rs │ │ │ ├── data_binding.rs │ │ │ ├── default_tab_stop.rs │ │ │ ├── delete.rs │ │ │ ├── delete_instr_text.rs │ │ │ ├── delete_text.rs │ │ │ ├── div.rs │ │ │ ├── doc_defaults.rs │ │ │ ├── doc_grid.rs │ │ │ ├── doc_id.rs │ │ │ ├── doc_var.rs │ │ │ ├── drawing.rs │ │ │ ├── dstrike.rs │ │ │ ├── fld_char.rs │ │ │ ├── font.rs │ │ │ ├── font_scheme.rs │ │ │ ├── footer_reference.rs │ │ │ ├── footnote.rs │ │ │ ├── footnote_reference.rs │ │ │ ├── frame_property.rs │ │ │ ├── grid_span.rs │ │ │ ├── header_reference.rs │ │ │ ├── highlight.rs │ │ │ ├── hyperlink.rs │ │ │ ├── indent.rs │ │ │ ├── indent_level.rs │ │ │ ├── insert.rs │ │ │ ├── instr_hyperlink.rs │ │ │ ├── instr_num_pages.rs │ │ │ ├── instr_page.rs │ │ │ ├── instr_pageref.rs │ │ │ ├── instr_tc.rs │ │ │ ├── instr_text.rs │ │ │ ├── instr_toc.rs │ │ │ ├── is_lgl.rs │ │ │ ├── italic.rs │ │ │ ├── italic_cs.rs │ │ │ ├── justification.rs │ │ │ ├── level.rs │ │ │ ├── level_jc.rs │ │ │ ├── level_override.rs │ │ │ ├── level_restart.rs │ │ │ ├── level_text.rs │ │ │ ├── line_spacing.rs │ │ │ ├── link.rs │ │ │ ├── mc_fallback.rs │ │ │ ├── mod.rs │ │ │ ├── name.rs │ │ │ ├── next.rs │ │ │ ├── num_pages.rs │ │ │ ├── number_format.rs │ │ │ ├── numbering.rs │ │ │ ├── numbering_id.rs │ │ │ ├── numbering_property.rs │ │ │ ├── outline_lvl.rs │ │ │ ├── page_margin.rs │ │ │ ├── page_num.rs │ │ │ ├── page_num_type.rs │ │ │ ├── page_size.rs │ │ │ ├── paragraph.rs │ │ │ ├── paragraph_borders.rs │ │ │ ├── paragraph_property.rs │ │ │ ├── paragraph_property_change.rs │ │ │ ├── paragraph_property_default.rs │ │ │ ├── paragraph_style.rs │ │ │ ├── pic.rs │ │ │ ├── positional_tab.rs │ │ │ ├── q_format.rs │ │ │ ├── run.rs │ │ │ ├── run_fonts.rs │ │ │ ├── run_property.rs │ │ │ ├── run_property_default.rs │ │ │ ├── run_style.rs │ │ │ ├── section.rs │ │ │ ├── section_property.rs │ │ │ ├── shading.rs │ │ │ ├── shape.rs │ │ │ ├── spec_vanish.rs │ │ │ ├── start.rs │ │ │ ├── stretch.rs │ │ │ ├── strike.rs │ │ │ ├── structured_data_tag.rs │ │ │ ├── structured_data_tag_property.rs │ │ │ ├── style.rs │ │ │ ├── sym.rs │ │ │ ├── sz.rs │ │ │ ├── sz_cs.rs │ │ │ ├── tab.rs │ │ │ ├── table.rs │ │ │ ├── table_borders.rs │ │ │ ├── table_cell.rs │ │ │ ├── table_cell_borders.rs │ │ │ ├── table_cell_margins.rs │ │ │ ├── table_cell_property.rs │ │ │ ├── table_cell_width.rs │ │ │ ├── table_grid.rs │ │ │ ├── table_indent.rs │ │ │ ├── table_layout.rs │ │ │ ├── table_of_contents.rs │ │ │ ├── table_of_contents_item.rs │ │ │ ├── table_position_property.rs │ │ │ ├── table_property.rs │ │ │ ├── table_row.rs │ │ │ ├── table_row_property.rs │ │ │ ├── table_style.rs │ │ │ ├── table_width.rs │ │ │ ├── tabs.rs │ │ │ ├── text.rs │ │ │ ├── text_alignment.rs │ │ │ ├── text_border.rs │ │ │ ├── text_box.rs │ │ │ ├── text_box_content.rs │ │ │ ├── text_direction.rs │ │ │ ├── underline.rs │ │ │ ├── v_align.rs │ │ │ ├── vanish.rs │ │ │ ├── vert_align.rs │ │ │ ├── vertical_merge.rs │ │ │ ├── wp_anchor.rs │ │ │ ├── wps_shape.rs │ │ │ ├── wps_text_box.rs │ │ │ └── zoom.rs │ │ ├── font_table.rs │ │ ├── footer.rs │ │ ├── footer_id.rs │ │ ├── footer_rels.rs │ │ ├── footnote_id.rs │ │ ├── footnotes.rs │ │ ├── header.rs │ │ ├── header_id.rs │ │ ├── header_rels.rs │ │ ├── history_id.rs │ │ ├── hyperlink_id.rs │ │ ├── image_collector.rs │ │ ├── mod.rs │ │ ├── numberings.rs │ │ ├── paragraph_id.rs │ │ ├── paragraph_property_change_id.rs │ │ ├── pic_id.rs │ │ ├── preset_styles │ │ │ ├── mod.rs │ │ │ └── toc.rs │ │ ├── rels.rs │ │ ├── settings.rs │ │ ├── snapshots │ │ │ ├── docx_rs__documents__comments_extended__tests__comments_extended_snapshot.snap │ │ │ └── docx_rs__documents__comments_extended__tests__settings.snap │ │ ├── styles.rs │ │ ├── taskpanes.rs │ │ ├── taskpanes_rels.rs │ │ ├── theme.rs │ │ ├── toc_key.rs │ │ ├── web_settings.rs │ │ ├── webextension.rs │ │ └── xml_docx.rs │ ├── errors │ │ └── mod.rs │ ├── escape │ │ └── mod.rs │ ├── lib.rs │ ├── macros.rs │ ├── reader │ │ ├── a_graphic.rs │ │ ├── a_graphic_data.rs │ │ ├── attributes │ │ │ ├── bool_value.rs │ │ │ ├── border.rs │ │ │ ├── id.rs │ │ │ ├── indent.rs │ │ │ ├── indent_level.rs │ │ │ ├── line_spacing.rs │ │ │ ├── mod.rs │ │ │ ├── name.rs │ │ │ ├── val.rs │ │ │ └── width.rs │ │ ├── bookmark_end.rs │ │ ├── bookmark_start.rs │ │ ├── cell_margins.rs │ │ ├── comment.rs │ │ ├── comment_extended.rs │ │ ├── comments.rs │ │ ├── comments_extended.rs │ │ ├── custom_properties.rs │ │ ├── delete.rs │ │ ├── div.rs │ │ ├── doc_defaults.rs │ │ ├── doc_grid.rs │ │ ├── document.rs │ │ ├── document_rels.rs │ │ ├── drawing.rs │ │ ├── errors.rs │ │ ├── font_group.rs │ │ ├── font_scheme.rs │ │ ├── footer.rs │ │ ├── frame_property.rs │ │ ├── from_xml.rs │ │ ├── header.rs │ │ ├── header_or_footer_rels.rs │ │ ├── hyperlink.rs │ │ ├── ignore.rs │ │ ├── insert.rs │ │ ├── level.rs │ │ ├── level_override.rs │ │ ├── mc_fallback.rs │ │ ├── mod.rs │ │ ├── namespace.rs │ │ ├── numbering_property.rs │ │ ├── numberings.rs │ │ ├── page_num_type.rs │ │ ├── paragraph.rs │ │ ├── paragraph_property.rs │ │ ├── paragraph_property_change.rs │ │ ├── pic.rs │ │ ├── positional_tab.rs │ │ ├── read_docx.rs │ │ ├── read_xml.rs │ │ ├── read_zip.rs │ │ ├── rels.rs │ │ ├── run.rs │ │ ├── run_property.rs │ │ ├── section_property.rs │ │ ├── settings.rs │ │ ├── shading.rs │ │ ├── shape.rs │ │ ├── structured_data_tag.rs │ │ ├── style.rs │ │ ├── styles.rs │ │ ├── tab.rs │ │ ├── table.rs │ │ ├── table_borders.rs │ │ ├── table_cell.rs │ │ ├── table_cell_borders.rs │ │ ├── table_cell_margins.rs │ │ ├── table_cell_property.rs │ │ ├── table_position_property.rs │ │ ├── table_property.rs │ │ ├── table_row.rs │ │ ├── tabs.rs │ │ ├── text_box_content.rs │ │ ├── theme.rs │ │ ├── web_settings.rs │ │ ├── wp_anchor.rs │ │ ├── wps_shape.rs │ │ ├── wps_text_box.rs │ │ ├── xml_element.rs │ │ └── xml_reader.rs │ ├── types │ │ ├── alignment_type.rs │ │ ├── border_position.rs │ │ ├── border_type.rs │ │ ├── break_type.rs │ │ ├── character_spacing_values.rs │ │ ├── doc_grid_type.rs │ │ ├── drawing_position.rs │ │ ├── emu.rs │ │ ├── errors.rs │ │ ├── field_char_type.rs │ │ ├── font_pitch_type.rs │ │ ├── height_rule.rs │ │ ├── hyperlink_type.rs │ │ ├── level_suffix_type.rs │ │ ├── line_spacing_type.rs │ │ ├── mod.rs │ │ ├── page_margin.rs │ │ ├── page_orientation_type.rs │ │ ├── positional_tab_alignment_type.rs │ │ ├── positional_tab_relative_to.rs │ │ ├── relative_from_type.rs │ │ ├── section_type.rs │ │ ├── shd_type.rs │ │ ├── special_indent_type.rs │ │ ├── style_type.rs │ │ ├── tab_leader_type.rs │ │ ├── tab_value_type.rs │ │ ├── table_alignment_type.rs │ │ ├── table_layout_type.rs │ │ ├── text_alignment_type.rs │ │ ├── text_direction_type.rs │ │ ├── vert_align_type.rs │ │ ├── vertical_align_type.rs │ │ ├── vertical_merge_type.rs │ │ └── width_type.rs │ ├── xml_builder │ │ ├── comments.rs │ │ ├── comments_extended.rs │ │ ├── core_properties.rs │ │ ├── custom_properties.rs │ │ ├── declaration.rs │ │ ├── document.rs │ │ ├── drawing.rs │ │ ├── elements.rs │ │ ├── fonts.rs │ │ ├── footer.rs │ │ ├── footnotes.rs │ │ ├── header.rs │ │ ├── macros.rs │ │ ├── mod.rs │ │ ├── numbering.rs │ │ ├── pic.rs │ │ ├── properties.rs │ │ ├── relationship.rs │ │ ├── settings.rs │ │ └── styles.rs │ ├── xml_json │ │ └── mod.rs │ └── zipper │ │ └── mod.rs ├── test_xml_reader.rs └── tests │ ├── lib.rs │ ├── output │ ├── .keep │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── comments.xml │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── numberings.xml │ │ ├── settings.xml │ │ └── styles.xml │ ├── reader.rs │ └── snapshots │ ├── lib__reader__line_spacing.snap │ ├── lib__reader__read_bom.snap │ ├── lib__reader__read_bookmark.snap │ ├── lib__reader__read_comment.snap │ ├── lib__reader__read_comment_in_delete_in_insert.snap │ ├── lib__reader__read_decoration.snap │ ├── lib__reader__read_extended_comment.snap │ ├── lib__reader__read_extended_comments.snap │ ├── lib__reader__read_footnotes.snap │ ├── lib__reader__read_from_doc.snap │ ├── lib__reader__read_hello.snap │ ├── lib__reader__read_highlight_and_underline.snap │ ├── lib__reader__read_history.snap │ ├── lib__reader__read_indent_word_online.snap │ ├── lib__reader__read_insert_table.snap │ ├── lib__reader__read_lvl_override.snap │ ├── lib__reader__read_numbering.snap │ ├── lib__reader__read_tab_and_break.snap │ ├── lib__reader__read_table_docx.snap │ ├── lib__reader__read_table_merged_libre_office.snap │ ├── lib__reader__read_textbox.snap │ ├── reader__line_spacing.snap │ ├── reader__read_bom.snap │ ├── reader__read_bookmark.snap │ ├── reader__read_comment.snap │ ├── reader__read_comment_in_delete_in_insert.snap │ ├── reader__read_decoration.snap │ ├── reader__read_extended_comment.snap │ ├── reader__read_extended_comments.snap │ ├── reader__read_footnotes.snap │ ├── reader__read_from_doc.snap │ ├── reader__read_hello.snap │ ├── reader__read_highlight_and_underline.snap │ ├── reader__read_history.snap │ ├── reader__read_indent_word_online.snap │ ├── reader__read_insert_table.snap │ ├── reader__read_lvl_override.snap │ ├── reader__read_numbering.snap │ ├── reader__read_tab_and_break.snap │ ├── reader__read_table_docx.snap │ ├── reader__read_table_merged_libre_office.snap │ └── reader__read_textbox.snap ├── docx-wasm ├── .npmignore ├── Cargo.toml ├── assets │ └── template.html ├── example │ └── index.ts ├── export-png │ ├── .gitignore │ ├── .keep │ ├── index.mjs │ ├── makefile │ ├── png │ │ └── .keep │ └── tsconfig.json ├── index.js ├── js │ ├── abstract-numbering.ts │ ├── bookmark-end.ts │ ├── bookmark-start.ts │ ├── border.ts │ ├── break.ts │ ├── builder.ts │ ├── comment-end.ts │ ├── comment.ts │ ├── delete-text.ts │ ├── delete.ts │ ├── doc-defaults.ts │ ├── doc-props.ts │ ├── footer.ts │ ├── header.ts │ ├── hyperlink.ts │ ├── image.ts │ ├── index.ts │ ├── insert.ts │ ├── json │ │ ├── bindings │ │ │ ├── AlignmentType.ts │ │ │ ├── Bold.ts │ │ │ ├── BoldCs.ts │ │ │ ├── BorderType.ts │ │ │ ├── Break.ts │ │ │ ├── BreakType.ts │ │ │ ├── Caps.ts │ │ │ ├── CharacterSpacing.ts │ │ │ ├── Color.ts │ │ │ ├── Comment.ts │ │ │ ├── CommentRangeEnd.ts │ │ │ ├── CommentRangeStart.ts │ │ │ ├── Delete.ts │ │ │ ├── DeleteChild.ts │ │ │ ├── DeleteText.ts │ │ │ ├── DrawingPosition.ts │ │ │ ├── DrawingPositionType.ts │ │ │ ├── FieldChar.ts │ │ │ ├── FieldCharType.ts │ │ │ ├── FontGroup.ts │ │ │ ├── FontScheme.ts │ │ │ ├── FontSchemeFont.ts │ │ │ ├── FooterReference.ts │ │ │ ├── FrameProperty.ts │ │ │ ├── HeaderReference.ts │ │ │ ├── Highlight.ts │ │ │ ├── HyperlinkType.ts │ │ │ ├── ImageData.ts │ │ │ ├── Insert.ts │ │ │ ├── InsertChild.ts │ │ │ ├── InstrHyperlink.ts │ │ │ ├── InstrPAGEREF.ts │ │ │ ├── InstrTC.ts │ │ │ ├── InstrText.ts │ │ │ ├── InstrToC.ts │ │ │ ├── Italic.ts │ │ │ ├── ItalicCs.ts │ │ │ ├── PageNumType.ts │ │ │ ├── Pic.ts │ │ │ ├── PicAlign.ts │ │ │ ├── PositionalTab.ts │ │ │ ├── PositionalTabAlignmentType.ts │ │ │ ├── PositionalTabRelativeTo.ts │ │ │ ├── RelativeFromHType.ts │ │ │ ├── RelativeFromVType.ts │ │ │ ├── Run.ts │ │ │ ├── RunFonts.ts │ │ │ ├── RunProperty.ts │ │ │ ├── RunStyle.ts │ │ │ ├── Shape.ts │ │ │ ├── SpecVanish.ts │ │ │ ├── Strike.ts │ │ │ ├── StyleWithLevel.ts │ │ │ ├── Sym.ts │ │ │ ├── Sz.ts │ │ │ ├── SzCs.ts │ │ │ ├── Tab.ts │ │ │ ├── TabLeaderType.ts │ │ │ ├── TabValueType.ts │ │ │ ├── TableCellBorder.ts │ │ │ ├── TableCellBorderPosition.ts │ │ │ ├── TableCellBorders.ts │ │ │ ├── TablePositionProperty.ts │ │ │ ├── Text.ts │ │ │ ├── TextAlignmentType.ts │ │ │ ├── TextBorder.ts │ │ │ ├── Theme.ts │ │ │ ├── Underline.ts │ │ │ ├── Vanish.ts │ │ │ └── VertAlign.ts │ │ ├── border.ts │ │ ├── comment.ts │ │ ├── document.ts │ │ ├── drawing.ts │ │ ├── footer.ts │ │ ├── header.ts │ │ ├── indent.ts │ │ ├── index.ts │ │ ├── line_spacing.ts │ │ ├── numbering.ts │ │ ├── paragraph.ts │ │ ├── run.ts │ │ ├── section-property.ts │ │ ├── shading.ts │ │ ├── shape.ts │ │ ├── structured-data-tag.ts │ │ ├── styles.ts │ │ ├── table.ts │ │ ├── textbox-content.ts │ │ └── web-settings.ts │ ├── level.ts │ ├── num-pages.ts │ ├── numbering.ts │ ├── page-num.ts │ ├── paragraph-property.ts │ ├── paragraph.ts │ ├── positional-tab.ts │ ├── run-property.ts │ ├── run.ts │ ├── section-property.ts │ ├── settings.ts │ ├── shading.ts │ ├── style.ts │ ├── styles.ts │ ├── tab-leader.ts │ ├── tab.ts │ ├── table-cell-border.ts │ ├── table-cell-borders.ts │ ├── table-cell.ts │ ├── table-of-contents-item.ts │ ├── table-of-contents.ts │ ├── table-row.ts │ ├── table.ts │ ├── tc.ts │ ├── text.ts │ └── webextension.ts ├── package.json ├── pnpm-lock.yaml ├── src │ ├── abstract_numbering.rs │ ├── adaptors │ │ ├── mod.rs │ │ └── special_indent.rs │ ├── comment.rs │ ├── delete.rs │ ├── doc.rs │ ├── footer.rs │ ├── frame_property.rs │ ├── header.rs │ ├── hyperlink.rs │ ├── insert.rs │ ├── level.rs │ ├── level_override.rs │ ├── lib.rs │ ├── line_spacing.rs │ ├── num_pages.rs │ ├── numbering.rs │ ├── page_margin.rs │ ├── page_num.rs │ ├── page_num_type.rs │ ├── paragraph.rs │ ├── paragraph_property.rs │ ├── pic.rs │ ├── positional_tab.rs │ ├── reader.rs │ ├── run.rs │ ├── run_fonts.rs │ ├── run_property.rs │ ├── style.rs │ ├── table.rs │ ├── table_cell.rs │ ├── table_cell_border.rs │ ├── table_of_contents.rs │ ├── table_of_contents_item.rs │ ├── table_position_property.rs │ ├── table_row.rs │ └── web_extension.rs ├── test │ ├── __snapshots__ │ │ └── index.test.js.snap │ ├── cat.js │ ├── encoded-cat.js │ ├── index.test.js │ └── output │ │ └── .keep ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.web.json ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js ├── fixtures ├── after_lines │ └── after_lines.docx ├── bom │ └── bom.docx ├── bookmark │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── bookmark.docx │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── comment │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── cat.jpeg │ ├── comment.docx │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── comments.xml │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── comment_in_delete_in_insert │ └── comment_in_delete_in_insert.docx ├── custom │ └── custom.docx ├── decoration │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── decoration.docx │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── default_line_spacing │ └── default_line_spacing.docx ├── del_in_ins │ └── del_in_ins.docx ├── div │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── div.docx │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ ├── webSettings.xml │ │ └── webextensions │ │ ├── _rels │ │ └── taskpanes.xml.rels │ │ ├── taskpanes.xml │ │ └── webextension1.xml ├── dstrike │ └── dstrike.docx ├── extended_comments │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── extended_comments.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── comments.xml │ │ ├── commentsExtended.xml │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── header1.xml │ │ ├── numbering.xml │ │ ├── settings.xml │ │ └── styles.xml ├── first_even_header │ └── first_even_header.docx ├── font │ └── font.docx ├── footer │ └── footer.docx ├── footnotes │ └── footnotes.docx ├── from_doc │ └── from_doc.docx ├── grid_after │ └── grid_after.docx ├── header_footer │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── header_footer.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── footer1.xml │ │ ├── header1.xml │ │ ├── settings.xml │ │ └── styles.xml ├── hello_libre_office │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── hello.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── hello_world │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── hello_world.docx │ └── word │ │ ├── _rels │ │ ├── footer1.xml.rels │ │ └── header1.xml.rels │ │ ├── document.xml │ │ ├── footer1.xml │ │ ├── footnotes.xml │ │ ├── header1.xml │ │ ├── numbering.xml │ │ └── styles.xml ├── hidden │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── hidden.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── highlight_and_underline │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── highlight_and_underline.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── history_libre_office │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── history.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── image │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── image.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── media │ │ └── image1.png │ │ ├── settings.xml │ │ └── styles.xml ├── image_in_textbox │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── image_in_textbox.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── media │ │ └── image1.png │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── image_inline_and_anchor │ └── image_inline_and_anchor.docx ├── image_node_docx │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── image.docx │ └── word │ │ ├── _rels │ │ ├── document.xml.rels │ │ ├── footer1.xml.rels │ │ └── header1.xml.rels │ │ ├── document.xml │ │ ├── footer1.xml │ │ ├── footnotes.xml │ │ ├── header1.xml │ │ ├── media │ │ ├── 2mhefq5b7fsoxmjaoiuyb.png │ │ ├── 40yrczdu6ohoeqs2cg2n4h.png │ │ ├── oja94skc7s5oq9avc9zyf.png │ │ └── vpvf42pjbjmb5zjs1nsbb.png │ │ ├── numbering.xml │ │ ├── settings.xml │ │ └── styles.xml ├── image_node_docx_floating │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── image.docx │ └── word │ │ ├── _rels │ │ ├── document.xml.rels │ │ ├── footer1.xml.rels │ │ └── header1.xml.rels │ │ ├── document.xml │ │ ├── footer1.xml │ │ ├── footnotes.xml │ │ ├── header1.xml │ │ ├── media │ │ └── dy29bt3j1idb692k2uzxlj.png │ │ ├── numbering.xml │ │ ├── settings.xml │ │ └── styles.xml ├── image_node_docx_relative │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── image.docx │ └── word │ │ ├── _rels │ │ ├── document.xml │ │ ├── footer1.xml.rels │ │ └── header1.xml.rels │ │ ├── document.xml │ │ ├── footer1.xml │ │ ├── footnotes.xml │ │ ├── header1.xml │ │ ├── media │ │ └── b7yx0qt3xx9yzh99bhv8d.png │ │ ├── numbering.xml │ │ ├── settings.xml │ │ └── styles.xml ├── image_output │ └── image.docx ├── image_output_resized │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── image.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── comments.xml │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── media │ │ └── image1.jpg │ │ ├── numbering.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── image_xml │ └── image.xml ├── indent_word_online │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── indent.docx │ └── word │ │ ├── _rels │ │ ├── document.xml.rels │ │ └── document2.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── insert_table │ └── insert_table.docx ├── instr_links │ └── instr_links.docx ├── issue554 │ └── issue554.docx ├── line_spacing │ └── line_spacing.docx ├── link │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── link.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── lvl_override │ ├── .rels │ ├── [Content_Types].xml │ ├── app.xml │ ├── core.xml │ ├── document.xml │ ├── fontTable.xml │ ├── numbering.xml │ ├── override.docx │ ├── settings.xml │ ├── styles.xml │ └── webSettings.xml ├── multi_paragraph_comment │ └── multi_paragraph_comment.docx ├── nested_comments │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── nested_comments.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── comments.xml │ │ ├── commentsExtended.xml │ │ ├── commentsExtensible.xml │ │ ├── commentsIds.xml │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── people.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── nested_table │ └── nested_table.docx ├── numbering │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── numbering.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── numbering.xml │ │ ├── settings.xml │ │ └── styles.xml ├── outline_lvl │ └── outline_lvl.docx ├── page_num_in_header │ └── page_num_in_header.docx ├── paragraph │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── paragraph.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── numbering.xml │ │ ├── settings.xml │ │ └── styles.xml ├── paragraph_property_change │ └── paragraph_property_change.docx ├── ptab │ └── ptab.docx ├── read_hang │ └── read_hang.docx ├── run_property_change │ └── ignore.docx ├── run_props │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── run_props.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── section_current │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── section_even_page │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── endnotes.xml │ │ ├── fontTable.xml │ │ ├── footer1.xml │ │ ├── footer2.xml │ │ ├── footer3.xml │ │ ├── footnotes.xml │ │ ├── header1.xml │ │ ├── header2.xml │ │ ├── header3.xml │ │ ├── header4.xml │ │ ├── header5.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── section_next_page │ └── word │ │ └── settings.xml ├── section_property_in_ppr │ └── section_property_in_ppr.docx ├── shape │ └── shape.docx ├── spacing │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── spec_vanish │ └── spec_vanish.docx ├── strike │ └── strike.docx ├── tab_and_break │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── tab_and_break.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── table_border │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── table_border.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── table_docx │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── table.docx │ └── word │ │ ├── _rels │ │ ├── document.xml.rels │ │ ├── footer1.xml.rels │ │ └── header1.xml.rels │ │ ├── document.xml │ │ ├── footer1.xml │ │ ├── footnotes.xml │ │ ├── header1.xml │ │ ├── numbering.xml │ │ ├── settings.xml │ │ └── styles.xml ├── table_indent │ └── table_indent.docx ├── table_libre_office │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── table.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── table_merged_libre_office │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── table_merged.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── table_style │ └── table_style.docx ├── table_valign │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── table_valign.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ └── styles.xml ├── table_word_online │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── table.docx │ └── word │ │ ├── _rels │ │ └── document2.xml.rels │ │ ├── document2.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── textbox │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── customXml │ │ ├── _rels │ │ │ └── item1.xml.rels │ │ ├── item1.xml │ │ └── itemProps1.xml │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ ├── textbox.docx │ └── word │ │ ├── _rels │ │ └── document.xml.rels │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── toc0 │ └── toc0.docx ├── toc1 │ └── toc1.docx ├── tr2bl │ └── tr2bl.docx ├── vert_align │ └── vert_align.docx ├── without_numid │ └── without_numid.docx └── word_default │ ├── [Content_Types].xml │ ├── _rels │ └── .rels │ ├── docProps │ ├── app.xml │ └── core.xml │ ├── word │ ├── _rels │ │ └── document.xml.rels │ ├── document.xml │ ├── fontTable.xml │ ├── numbering.xml │ ├── settings.xml │ ├── styles.xml │ ├── theme │ │ └── theme1.xml │ └── webSettings.xml │ └── word_default.docx ├── hello.docx ├── hello.json ├── image.docx ├── images ├── cat.jpeg └── cat_min.jpg ├── logo.png ├── makefile ├── output ├── .keep ├── examples │ └── .keep └── js │ └── .keep ├── renovate.json ├── rust-toolchain └── rustfmt.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [bokuweb] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/README.md -------------------------------------------------------------------------------- /docs/0.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docs/0.index.js -------------------------------------------------------------------------------- /docs/1.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docs/1.index.js -------------------------------------------------------------------------------- /docs/cf1f90b2feef7ead7222.module.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docs/cf1f90b2feef7ead7222.module.wasm -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docs/index.js -------------------------------------------------------------------------------- /docx-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/Cargo.toml -------------------------------------------------------------------------------- /docx-core/bindings/FontGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/bindings/FontGroup.ts -------------------------------------------------------------------------------- /docx-core/bindings/FontScheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/bindings/FontScheme.ts -------------------------------------------------------------------------------- /docx-core/bindings/FontSchemeFont.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/bindings/FontSchemeFont.ts -------------------------------------------------------------------------------- /docx-core/bindings/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/bindings/Theme.ts -------------------------------------------------------------------------------- /docx-core/examples/alignment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/alignment.rs -------------------------------------------------------------------------------- /docx-core/examples/bookmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/bookmark.rs -------------------------------------------------------------------------------- /docx-core/examples/comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/comment.rs -------------------------------------------------------------------------------- /docx-core/examples/custom_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/custom_property.rs -------------------------------------------------------------------------------- /docx-core/examples/custom_xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/custom_xml.rs -------------------------------------------------------------------------------- /docx-core/examples/data_binding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/data_binding.rs -------------------------------------------------------------------------------- /docx-core/examples/dirty_toc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/dirty_toc.rs -------------------------------------------------------------------------------- /docx-core/examples/doc_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/doc_id.rs -------------------------------------------------------------------------------- /docx-core/examples/even_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/even_header.rs -------------------------------------------------------------------------------- /docx-core/examples/first_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/first_header.rs -------------------------------------------------------------------------------- /docx-core/examples/font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/font.rs -------------------------------------------------------------------------------- /docx-core/examples/font_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/font_size.rs -------------------------------------------------------------------------------- /docx-core/examples/footer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/footer.rs -------------------------------------------------------------------------------- /docx-core/examples/footnotes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/footnotes.rs -------------------------------------------------------------------------------- /docx-core/examples/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/header.rs -------------------------------------------------------------------------------- /docx-core/examples/header_with_page_num.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/header_with_page_num.rs -------------------------------------------------------------------------------- /docx-core/examples/hello.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/hello.rs -------------------------------------------------------------------------------- /docx-core/examples/history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/history.rs -------------------------------------------------------------------------------- /docx-core/examples/hyperlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/hyperlink.rs -------------------------------------------------------------------------------- /docx-core/examples/image_floating.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/image_floating.rs -------------------------------------------------------------------------------- /docx-core/examples/image_in_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/image_in_header.rs -------------------------------------------------------------------------------- /docx-core/examples/image_inline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/image_inline.rs -------------------------------------------------------------------------------- /docx-core/examples/image_inline_rotate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/image_inline_rotate.rs -------------------------------------------------------------------------------- /docx-core/examples/image_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/image_reader.rs -------------------------------------------------------------------------------- /docx-core/examples/indent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/indent.rs -------------------------------------------------------------------------------- /docx-core/examples/nested_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/nested_comment.rs -------------------------------------------------------------------------------- /docx-core/examples/numbering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/numbering.rs -------------------------------------------------------------------------------- /docx-core/examples/outline_lvl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/outline_lvl.rs -------------------------------------------------------------------------------- /docx-core/examples/page_margin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/page_margin.rs -------------------------------------------------------------------------------- /docx-core/examples/page_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/page_size.rs -------------------------------------------------------------------------------- /docx-core/examples/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/reader.rs -------------------------------------------------------------------------------- /docx-core/examples/sdt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/sdt.rs -------------------------------------------------------------------------------- /docx-core/examples/section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/section.rs -------------------------------------------------------------------------------- /docx-core/examples/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/style.rs -------------------------------------------------------------------------------- /docx-core/examples/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/table.rs -------------------------------------------------------------------------------- /docx-core/examples/table_border.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/table_border.rs -------------------------------------------------------------------------------- /docx-core/examples/toc_simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/toc_simple.rs -------------------------------------------------------------------------------- /docx-core/examples/toc_with_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/toc_with_comment.rs -------------------------------------------------------------------------------- /docx-core/examples/toc_with_hyperlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/toc_with_hyperlink.rs -------------------------------------------------------------------------------- /docx-core/examples/toc_with_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/toc_with_item.rs -------------------------------------------------------------------------------- /docx-core/examples/toc_with_style_level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/toc_with_style_level.rs -------------------------------------------------------------------------------- /docx-core/examples/toc_with_tc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/toc_with_tc.rs -------------------------------------------------------------------------------- /docx-core/examples/web_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/examples/web_ext.rs -------------------------------------------------------------------------------- /docx-core/src/documents/bookmark_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/bookmark_id.rs -------------------------------------------------------------------------------- /docx-core/src/documents/build_xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/build_xml.rs -------------------------------------------------------------------------------- /docx-core/src/documents/comments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/comments.rs -------------------------------------------------------------------------------- /docx-core/src/documents/comments_extended.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/comments_extended.rs -------------------------------------------------------------------------------- /docx-core/src/documents/content_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/content_types.rs -------------------------------------------------------------------------------- /docx-core/src/documents/custom_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/custom_item.rs -------------------------------------------------------------------------------- /docx-core/src/documents/custom_item_rels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/custom_item_rels.rs -------------------------------------------------------------------------------- /docx-core/src/documents/doc_props/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/doc_props/app.rs -------------------------------------------------------------------------------- /docx-core/src/documents/doc_props/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/doc_props/core.rs -------------------------------------------------------------------------------- /docx-core/src/documents/doc_props/custom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/doc_props/custom.rs -------------------------------------------------------------------------------- /docx-core/src/documents/doc_props/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/doc_props/mod.rs -------------------------------------------------------------------------------- /docx-core/src/documents/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/document.rs -------------------------------------------------------------------------------- /docx-core/src/documents/document_rels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/document_rels.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/a_graphic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/a_graphic.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/based_on.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/based_on.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/bold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/bold.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/bold_cs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/bold_cs.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/br.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/br.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/cant_split.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/cant_split.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/caps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/caps.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/color.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/comment.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/delete.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/div.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/div.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/doc_grid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/doc_grid.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/doc_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/doc_id.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/doc_var.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/doc_var.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/drawing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/drawing.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/dstrike.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/dstrike.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/fld_char.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/fld_char.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/font.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/footnote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/footnote.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/grid_span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/grid_span.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/highlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/highlight.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/hyperlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/hyperlink.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/indent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/indent.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/insert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/insert.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/instr_page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/instr_page.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/instr_tc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/instr_tc.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/instr_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/instr_text.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/instr_toc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/instr_toc.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/is_lgl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/is_lgl.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/italic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/italic.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/italic_cs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/italic_cs.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/level.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/level_jc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/level_jc.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/level_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/level_text.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/link.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/mod.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/name.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/next.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/next.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/num_pages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/num_pages.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/numbering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/numbering.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/page_num.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/page_num.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/page_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/page_size.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/paragraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/paragraph.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/pic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/pic.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/q_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/q_format.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/run.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/run_fonts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/run_fonts.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/run_style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/run_style.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/section.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/shading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/shading.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/shape.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/start.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/start.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/stretch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/stretch.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/strike.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/strike.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/style.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/sym.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/sym.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/sz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/sz.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/sz_cs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/sz_cs.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/tab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/tab.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/table.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/table_cell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/table_cell.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/table_grid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/table_grid.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/table_row.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/table_row.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/tabs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/tabs.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/text.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/text_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/text_box.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/underline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/underline.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/v_align.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/v_align.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/vanish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/vanish.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/vert_align.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/vert_align.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/wp_anchor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/wp_anchor.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/wps_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/wps_shape.rs -------------------------------------------------------------------------------- /docx-core/src/documents/elements/zoom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/elements/zoom.rs -------------------------------------------------------------------------------- /docx-core/src/documents/font_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/font_table.rs -------------------------------------------------------------------------------- /docx-core/src/documents/footer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/footer.rs -------------------------------------------------------------------------------- /docx-core/src/documents/footer_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/footer_id.rs -------------------------------------------------------------------------------- /docx-core/src/documents/footer_rels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/footer_rels.rs -------------------------------------------------------------------------------- /docx-core/src/documents/footnote_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/footnote_id.rs -------------------------------------------------------------------------------- /docx-core/src/documents/footnotes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/footnotes.rs -------------------------------------------------------------------------------- /docx-core/src/documents/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/header.rs -------------------------------------------------------------------------------- /docx-core/src/documents/header_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/header_id.rs -------------------------------------------------------------------------------- /docx-core/src/documents/header_rels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/header_rels.rs -------------------------------------------------------------------------------- /docx-core/src/documents/history_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/history_id.rs -------------------------------------------------------------------------------- /docx-core/src/documents/hyperlink_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/hyperlink_id.rs -------------------------------------------------------------------------------- /docx-core/src/documents/image_collector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/image_collector.rs -------------------------------------------------------------------------------- /docx-core/src/documents/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/mod.rs -------------------------------------------------------------------------------- /docx-core/src/documents/numberings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/numberings.rs -------------------------------------------------------------------------------- /docx-core/src/documents/paragraph_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/paragraph_id.rs -------------------------------------------------------------------------------- /docx-core/src/documents/pic_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/pic_id.rs -------------------------------------------------------------------------------- /docx-core/src/documents/preset_styles/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/preset_styles/mod.rs -------------------------------------------------------------------------------- /docx-core/src/documents/preset_styles/toc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/preset_styles/toc.rs -------------------------------------------------------------------------------- /docx-core/src/documents/rels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/rels.rs -------------------------------------------------------------------------------- /docx-core/src/documents/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/settings.rs -------------------------------------------------------------------------------- /docx-core/src/documents/styles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/styles.rs -------------------------------------------------------------------------------- /docx-core/src/documents/taskpanes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/taskpanes.rs -------------------------------------------------------------------------------- /docx-core/src/documents/taskpanes_rels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/taskpanes_rels.rs -------------------------------------------------------------------------------- /docx-core/src/documents/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/theme.rs -------------------------------------------------------------------------------- /docx-core/src/documents/toc_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/toc_key.rs -------------------------------------------------------------------------------- /docx-core/src/documents/web_settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/web_settings.rs -------------------------------------------------------------------------------- /docx-core/src/documents/webextension.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/webextension.rs -------------------------------------------------------------------------------- /docx-core/src/documents/xml_docx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/documents/xml_docx.rs -------------------------------------------------------------------------------- /docx-core/src/errors/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/errors/mod.rs -------------------------------------------------------------------------------- /docx-core/src/escape/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/escape/mod.rs -------------------------------------------------------------------------------- /docx-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/lib.rs -------------------------------------------------------------------------------- /docx-core/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/macros.rs -------------------------------------------------------------------------------- /docx-core/src/reader/a_graphic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/a_graphic.rs -------------------------------------------------------------------------------- /docx-core/src/reader/a_graphic_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/a_graphic_data.rs -------------------------------------------------------------------------------- /docx-core/src/reader/attributes/bool_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/attributes/bool_value.rs -------------------------------------------------------------------------------- /docx-core/src/reader/attributes/border.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/attributes/border.rs -------------------------------------------------------------------------------- /docx-core/src/reader/attributes/id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/attributes/id.rs -------------------------------------------------------------------------------- /docx-core/src/reader/attributes/indent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/attributes/indent.rs -------------------------------------------------------------------------------- /docx-core/src/reader/attributes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/attributes/mod.rs -------------------------------------------------------------------------------- /docx-core/src/reader/attributes/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/attributes/name.rs -------------------------------------------------------------------------------- /docx-core/src/reader/attributes/val.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/attributes/val.rs -------------------------------------------------------------------------------- /docx-core/src/reader/attributes/width.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/attributes/width.rs -------------------------------------------------------------------------------- /docx-core/src/reader/bookmark_end.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/bookmark_end.rs -------------------------------------------------------------------------------- /docx-core/src/reader/bookmark_start.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/bookmark_start.rs -------------------------------------------------------------------------------- /docx-core/src/reader/cell_margins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/cell_margins.rs -------------------------------------------------------------------------------- /docx-core/src/reader/comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/comment.rs -------------------------------------------------------------------------------- /docx-core/src/reader/comment_extended.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/comment_extended.rs -------------------------------------------------------------------------------- /docx-core/src/reader/comments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/comments.rs -------------------------------------------------------------------------------- /docx-core/src/reader/comments_extended.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/comments_extended.rs -------------------------------------------------------------------------------- /docx-core/src/reader/custom_properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/custom_properties.rs -------------------------------------------------------------------------------- /docx-core/src/reader/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/delete.rs -------------------------------------------------------------------------------- /docx-core/src/reader/div.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/div.rs -------------------------------------------------------------------------------- /docx-core/src/reader/doc_defaults.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/doc_defaults.rs -------------------------------------------------------------------------------- /docx-core/src/reader/doc_grid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/doc_grid.rs -------------------------------------------------------------------------------- /docx-core/src/reader/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/document.rs -------------------------------------------------------------------------------- /docx-core/src/reader/document_rels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/document_rels.rs -------------------------------------------------------------------------------- /docx-core/src/reader/drawing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/drawing.rs -------------------------------------------------------------------------------- /docx-core/src/reader/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/errors.rs -------------------------------------------------------------------------------- /docx-core/src/reader/font_group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/font_group.rs -------------------------------------------------------------------------------- /docx-core/src/reader/font_scheme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/font_scheme.rs -------------------------------------------------------------------------------- /docx-core/src/reader/footer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/footer.rs -------------------------------------------------------------------------------- /docx-core/src/reader/frame_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/frame_property.rs -------------------------------------------------------------------------------- /docx-core/src/reader/from_xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/from_xml.rs -------------------------------------------------------------------------------- /docx-core/src/reader/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/header.rs -------------------------------------------------------------------------------- /docx-core/src/reader/header_or_footer_rels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/header_or_footer_rels.rs -------------------------------------------------------------------------------- /docx-core/src/reader/hyperlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/hyperlink.rs -------------------------------------------------------------------------------- /docx-core/src/reader/ignore.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/ignore.rs -------------------------------------------------------------------------------- /docx-core/src/reader/insert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/insert.rs -------------------------------------------------------------------------------- /docx-core/src/reader/level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/level.rs -------------------------------------------------------------------------------- /docx-core/src/reader/level_override.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/level_override.rs -------------------------------------------------------------------------------- /docx-core/src/reader/mc_fallback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/mc_fallback.rs -------------------------------------------------------------------------------- /docx-core/src/reader/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/mod.rs -------------------------------------------------------------------------------- /docx-core/src/reader/namespace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/namespace.rs -------------------------------------------------------------------------------- /docx-core/src/reader/numbering_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/numbering_property.rs -------------------------------------------------------------------------------- /docx-core/src/reader/numberings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/numberings.rs -------------------------------------------------------------------------------- /docx-core/src/reader/page_num_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/page_num_type.rs -------------------------------------------------------------------------------- /docx-core/src/reader/paragraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/paragraph.rs -------------------------------------------------------------------------------- /docx-core/src/reader/paragraph_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/paragraph_property.rs -------------------------------------------------------------------------------- /docx-core/src/reader/pic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/pic.rs -------------------------------------------------------------------------------- /docx-core/src/reader/positional_tab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/positional_tab.rs -------------------------------------------------------------------------------- /docx-core/src/reader/read_docx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/read_docx.rs -------------------------------------------------------------------------------- /docx-core/src/reader/read_xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/read_xml.rs -------------------------------------------------------------------------------- /docx-core/src/reader/read_zip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/read_zip.rs -------------------------------------------------------------------------------- /docx-core/src/reader/rels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/rels.rs -------------------------------------------------------------------------------- /docx-core/src/reader/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/run.rs -------------------------------------------------------------------------------- /docx-core/src/reader/run_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/run_property.rs -------------------------------------------------------------------------------- /docx-core/src/reader/section_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/section_property.rs -------------------------------------------------------------------------------- /docx-core/src/reader/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/settings.rs -------------------------------------------------------------------------------- /docx-core/src/reader/shading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/shading.rs -------------------------------------------------------------------------------- /docx-core/src/reader/shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/shape.rs -------------------------------------------------------------------------------- /docx-core/src/reader/structured_data_tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/structured_data_tag.rs -------------------------------------------------------------------------------- /docx-core/src/reader/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/style.rs -------------------------------------------------------------------------------- /docx-core/src/reader/styles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/styles.rs -------------------------------------------------------------------------------- /docx-core/src/reader/tab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/tab.rs -------------------------------------------------------------------------------- /docx-core/src/reader/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/table.rs -------------------------------------------------------------------------------- /docx-core/src/reader/table_borders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/table_borders.rs -------------------------------------------------------------------------------- /docx-core/src/reader/table_cell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/table_cell.rs -------------------------------------------------------------------------------- /docx-core/src/reader/table_cell_borders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/table_cell_borders.rs -------------------------------------------------------------------------------- /docx-core/src/reader/table_cell_margins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/table_cell_margins.rs -------------------------------------------------------------------------------- /docx-core/src/reader/table_cell_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/table_cell_property.rs -------------------------------------------------------------------------------- /docx-core/src/reader/table_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/table_property.rs -------------------------------------------------------------------------------- /docx-core/src/reader/table_row.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/table_row.rs -------------------------------------------------------------------------------- /docx-core/src/reader/tabs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/tabs.rs -------------------------------------------------------------------------------- /docx-core/src/reader/text_box_content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/text_box_content.rs -------------------------------------------------------------------------------- /docx-core/src/reader/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/theme.rs -------------------------------------------------------------------------------- /docx-core/src/reader/web_settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/web_settings.rs -------------------------------------------------------------------------------- /docx-core/src/reader/wp_anchor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/wp_anchor.rs -------------------------------------------------------------------------------- /docx-core/src/reader/wps_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/wps_shape.rs -------------------------------------------------------------------------------- /docx-core/src/reader/wps_text_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/wps_text_box.rs -------------------------------------------------------------------------------- /docx-core/src/reader/xml_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/xml_element.rs -------------------------------------------------------------------------------- /docx-core/src/reader/xml_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/reader/xml_reader.rs -------------------------------------------------------------------------------- /docx-core/src/types/alignment_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/alignment_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/border_position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/border_position.rs -------------------------------------------------------------------------------- /docx-core/src/types/border_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/border_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/break_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/break_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/doc_grid_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/doc_grid_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/drawing_position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/drawing_position.rs -------------------------------------------------------------------------------- /docx-core/src/types/emu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/emu.rs -------------------------------------------------------------------------------- /docx-core/src/types/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/errors.rs -------------------------------------------------------------------------------- /docx-core/src/types/field_char_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/field_char_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/font_pitch_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/font_pitch_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/height_rule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/height_rule.rs -------------------------------------------------------------------------------- /docx-core/src/types/hyperlink_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/hyperlink_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/level_suffix_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/level_suffix_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/line_spacing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/line_spacing_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/mod.rs -------------------------------------------------------------------------------- /docx-core/src/types/page_margin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/page_margin.rs -------------------------------------------------------------------------------- /docx-core/src/types/page_orientation_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/page_orientation_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/relative_from_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/relative_from_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/section_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/section_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/shd_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/shd_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/special_indent_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/special_indent_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/style_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/style_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/tab_leader_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/tab_leader_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/tab_value_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/tab_value_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/table_alignment_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/table_alignment_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/table_layout_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/table_layout_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/text_alignment_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/text_alignment_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/text_direction_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/text_direction_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/vert_align_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/vert_align_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/vertical_align_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/vertical_align_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/vertical_merge_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/vertical_merge_type.rs -------------------------------------------------------------------------------- /docx-core/src/types/width_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/types/width_type.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/comments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/comments.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/comments_extended.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/comments_extended.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/core_properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/core_properties.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/custom_properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/custom_properties.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/declaration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/declaration.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/document.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/drawing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/drawing.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/elements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/elements.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/fonts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/fonts.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/footer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/footer.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/footnotes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/footnotes.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/header.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/macros.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/mod.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/numbering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/numbering.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/pic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/pic.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/properties.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/relationship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/relationship.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/settings.rs -------------------------------------------------------------------------------- /docx-core/src/xml_builder/styles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_builder/styles.rs -------------------------------------------------------------------------------- /docx-core/src/xml_json/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/xml_json/mod.rs -------------------------------------------------------------------------------- /docx-core/src/zipper/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/src/zipper/mod.rs -------------------------------------------------------------------------------- /docx-core/test_xml_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/test_xml_reader.rs -------------------------------------------------------------------------------- /docx-core/tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/lib.rs -------------------------------------------------------------------------------- /docx-core/tests/output/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docx-core/tests/output/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/[Content_Types].xml -------------------------------------------------------------------------------- /docx-core/tests/output/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/_rels/.rels -------------------------------------------------------------------------------- /docx-core/tests/output/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/docProps/app.xml -------------------------------------------------------------------------------- /docx-core/tests/output/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/docProps/core.xml -------------------------------------------------------------------------------- /docx-core/tests/output/word/comments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/word/comments.xml -------------------------------------------------------------------------------- /docx-core/tests/output/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/word/document.xml -------------------------------------------------------------------------------- /docx-core/tests/output/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/word/fontTable.xml -------------------------------------------------------------------------------- /docx-core/tests/output/word/numberings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/word/numberings.xml -------------------------------------------------------------------------------- /docx-core/tests/output/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/word/settings.xml -------------------------------------------------------------------------------- /docx-core/tests/output/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/output/word/styles.xml -------------------------------------------------------------------------------- /docx-core/tests/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-core/tests/reader.rs -------------------------------------------------------------------------------- /docx-wasm/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docx-wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/Cargo.toml -------------------------------------------------------------------------------- /docx-wasm/assets/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/assets/template.html -------------------------------------------------------------------------------- /docx-wasm/example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/example/index.ts -------------------------------------------------------------------------------- /docx-wasm/export-png/.gitignore: -------------------------------------------------------------------------------- 1 | png/*.png -------------------------------------------------------------------------------- /docx-wasm/export-png/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docx-wasm/export-png/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/export-png/index.mjs -------------------------------------------------------------------------------- /docx-wasm/export-png/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/export-png/makefile -------------------------------------------------------------------------------- /docx-wasm/export-png/png/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docx-wasm/export-png/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/export-png/tsconfig.json -------------------------------------------------------------------------------- /docx-wasm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/index.js -------------------------------------------------------------------------------- /docx-wasm/js/abstract-numbering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/abstract-numbering.ts -------------------------------------------------------------------------------- /docx-wasm/js/bookmark-end.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/bookmark-end.ts -------------------------------------------------------------------------------- /docx-wasm/js/bookmark-start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/bookmark-start.ts -------------------------------------------------------------------------------- /docx-wasm/js/border.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/border.ts -------------------------------------------------------------------------------- /docx-wasm/js/break.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/break.ts -------------------------------------------------------------------------------- /docx-wasm/js/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/builder.ts -------------------------------------------------------------------------------- /docx-wasm/js/comment-end.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/comment-end.ts -------------------------------------------------------------------------------- /docx-wasm/js/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/comment.ts -------------------------------------------------------------------------------- /docx-wasm/js/delete-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/delete-text.ts -------------------------------------------------------------------------------- /docx-wasm/js/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/delete.ts -------------------------------------------------------------------------------- /docx-wasm/js/doc-defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/doc-defaults.ts -------------------------------------------------------------------------------- /docx-wasm/js/doc-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/doc-props.ts -------------------------------------------------------------------------------- /docx-wasm/js/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/footer.ts -------------------------------------------------------------------------------- /docx-wasm/js/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/header.ts -------------------------------------------------------------------------------- /docx-wasm/js/hyperlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/hyperlink.ts -------------------------------------------------------------------------------- /docx-wasm/js/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/image.ts -------------------------------------------------------------------------------- /docx-wasm/js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/index.ts -------------------------------------------------------------------------------- /docx-wasm/js/insert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/insert.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/AlignmentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/AlignmentType.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Bold.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/BoldCs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/BoldCs.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/BorderType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/BorderType.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Break.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Break.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/BreakType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/BreakType.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Caps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Caps.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/CharacterSpacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/CharacterSpacing.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Color.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Comment.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/CommentRangeEnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/CommentRangeEnd.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Delete.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/DeleteChild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/DeleteChild.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/DeleteText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/DeleteText.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/DrawingPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/DrawingPosition.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/FieldChar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/FieldChar.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/FieldCharType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/FieldCharType.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/FontGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/FontGroup.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/FontScheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/FontScheme.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/FontSchemeFont.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/FontSchemeFont.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/FooterReference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/FooterReference.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/FrameProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/FrameProperty.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/HeaderReference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/HeaderReference.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Highlight.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/HyperlinkType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/HyperlinkType.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/ImageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/ImageData.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Insert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Insert.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/InsertChild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/InsertChild.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/InstrHyperlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/InstrHyperlink.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/InstrPAGEREF.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/InstrPAGEREF.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/InstrTC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/InstrTC.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/InstrText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/InstrText.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/InstrToC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/InstrToC.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Italic.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/ItalicCs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/ItalicCs.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/PageNumType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/PageNumType.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Pic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Pic.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/PicAlign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/PicAlign.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/PositionalTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/PositionalTab.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Run.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/RunFonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/RunFonts.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/RunProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/RunProperty.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/RunStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/RunStyle.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Shape.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/SpecVanish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/SpecVanish.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Strike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Strike.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/StyleWithLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/StyleWithLevel.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Sym.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Sym.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Sz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Sz.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/SzCs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/SzCs.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Tab.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/TabLeaderType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/TabLeaderType.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/TabValueType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/TabValueType.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/TableCellBorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/TableCellBorder.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/TableCellBorders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/TableCellBorders.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Text.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/TextBorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/TextBorder.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Theme.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Underline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Underline.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/Vanish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/Vanish.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/bindings/VertAlign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/bindings/VertAlign.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/border.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/border.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/comment.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/document.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/drawing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/drawing.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/footer.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/header.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/indent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/indent.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/index.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/line_spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/line_spacing.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/numbering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/numbering.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/paragraph.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/run.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/section-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/section-property.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/shading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/shading.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/shape.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/structured-data-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/structured-data-tag.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/styles.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/table.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/textbox-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/textbox-content.ts -------------------------------------------------------------------------------- /docx-wasm/js/json/web-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/json/web-settings.ts -------------------------------------------------------------------------------- /docx-wasm/js/level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/level.ts -------------------------------------------------------------------------------- /docx-wasm/js/num-pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/num-pages.ts -------------------------------------------------------------------------------- /docx-wasm/js/numbering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/numbering.ts -------------------------------------------------------------------------------- /docx-wasm/js/page-num.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/page-num.ts -------------------------------------------------------------------------------- /docx-wasm/js/paragraph-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/paragraph-property.ts -------------------------------------------------------------------------------- /docx-wasm/js/paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/paragraph.ts -------------------------------------------------------------------------------- /docx-wasm/js/positional-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/positional-tab.ts -------------------------------------------------------------------------------- /docx-wasm/js/run-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/run-property.ts -------------------------------------------------------------------------------- /docx-wasm/js/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/run.ts -------------------------------------------------------------------------------- /docx-wasm/js/section-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/section-property.ts -------------------------------------------------------------------------------- /docx-wasm/js/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/settings.ts -------------------------------------------------------------------------------- /docx-wasm/js/shading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/shading.ts -------------------------------------------------------------------------------- /docx-wasm/js/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/style.ts -------------------------------------------------------------------------------- /docx-wasm/js/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/styles.ts -------------------------------------------------------------------------------- /docx-wasm/js/tab-leader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/tab-leader.ts -------------------------------------------------------------------------------- /docx-wasm/js/tab.ts: -------------------------------------------------------------------------------- 1 | export class Tab {} 2 | -------------------------------------------------------------------------------- /docx-wasm/js/table-cell-border.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/table-cell-border.ts -------------------------------------------------------------------------------- /docx-wasm/js/table-cell-borders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/table-cell-borders.ts -------------------------------------------------------------------------------- /docx-wasm/js/table-cell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/table-cell.ts -------------------------------------------------------------------------------- /docx-wasm/js/table-of-contents-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/table-of-contents-item.ts -------------------------------------------------------------------------------- /docx-wasm/js/table-of-contents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/table-of-contents.ts -------------------------------------------------------------------------------- /docx-wasm/js/table-row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/table-row.ts -------------------------------------------------------------------------------- /docx-wasm/js/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/table.ts -------------------------------------------------------------------------------- /docx-wasm/js/tc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/tc.ts -------------------------------------------------------------------------------- /docx-wasm/js/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/text.ts -------------------------------------------------------------------------------- /docx-wasm/js/webextension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/js/webextension.ts -------------------------------------------------------------------------------- /docx-wasm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/package.json -------------------------------------------------------------------------------- /docx-wasm/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/pnpm-lock.yaml -------------------------------------------------------------------------------- /docx-wasm/src/abstract_numbering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/abstract_numbering.rs -------------------------------------------------------------------------------- /docx-wasm/src/adaptors/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/adaptors/mod.rs -------------------------------------------------------------------------------- /docx-wasm/src/adaptors/special_indent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/adaptors/special_indent.rs -------------------------------------------------------------------------------- /docx-wasm/src/comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/comment.rs -------------------------------------------------------------------------------- /docx-wasm/src/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/delete.rs -------------------------------------------------------------------------------- /docx-wasm/src/doc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/doc.rs -------------------------------------------------------------------------------- /docx-wasm/src/footer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/footer.rs -------------------------------------------------------------------------------- /docx-wasm/src/frame_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/frame_property.rs -------------------------------------------------------------------------------- /docx-wasm/src/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/header.rs -------------------------------------------------------------------------------- /docx-wasm/src/hyperlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/hyperlink.rs -------------------------------------------------------------------------------- /docx-wasm/src/insert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/insert.rs -------------------------------------------------------------------------------- /docx-wasm/src/level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/level.rs -------------------------------------------------------------------------------- /docx-wasm/src/level_override.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/level_override.rs -------------------------------------------------------------------------------- /docx-wasm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/lib.rs -------------------------------------------------------------------------------- /docx-wasm/src/line_spacing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/line_spacing.rs -------------------------------------------------------------------------------- /docx-wasm/src/num_pages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/num_pages.rs -------------------------------------------------------------------------------- /docx-wasm/src/numbering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/numbering.rs -------------------------------------------------------------------------------- /docx-wasm/src/page_margin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/page_margin.rs -------------------------------------------------------------------------------- /docx-wasm/src/page_num.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/page_num.rs -------------------------------------------------------------------------------- /docx-wasm/src/page_num_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/page_num_type.rs -------------------------------------------------------------------------------- /docx-wasm/src/paragraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/paragraph.rs -------------------------------------------------------------------------------- /docx-wasm/src/paragraph_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/paragraph_property.rs -------------------------------------------------------------------------------- /docx-wasm/src/pic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/pic.rs -------------------------------------------------------------------------------- /docx-wasm/src/positional_tab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/positional_tab.rs -------------------------------------------------------------------------------- /docx-wasm/src/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/reader.rs -------------------------------------------------------------------------------- /docx-wasm/src/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/run.rs -------------------------------------------------------------------------------- /docx-wasm/src/run_fonts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/run_fonts.rs -------------------------------------------------------------------------------- /docx-wasm/src/run_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/run_property.rs -------------------------------------------------------------------------------- /docx-wasm/src/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/style.rs -------------------------------------------------------------------------------- /docx-wasm/src/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/table.rs -------------------------------------------------------------------------------- /docx-wasm/src/table_cell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/table_cell.rs -------------------------------------------------------------------------------- /docx-wasm/src/table_cell_border.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/table_cell_border.rs -------------------------------------------------------------------------------- /docx-wasm/src/table_of_contents.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/table_of_contents.rs -------------------------------------------------------------------------------- /docx-wasm/src/table_of_contents_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/table_of_contents_item.rs -------------------------------------------------------------------------------- /docx-wasm/src/table_position_property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/table_position_property.rs -------------------------------------------------------------------------------- /docx-wasm/src/table_row.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/table_row.rs -------------------------------------------------------------------------------- /docx-wasm/src/web_extension.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/src/web_extension.rs -------------------------------------------------------------------------------- /docx-wasm/test/cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/test/cat.js -------------------------------------------------------------------------------- /docx-wasm/test/encoded-cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/test/encoded-cat.js -------------------------------------------------------------------------------- /docx-wasm/test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/test/index.test.js -------------------------------------------------------------------------------- /docx-wasm/test/output/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docx-wasm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/tsconfig.json -------------------------------------------------------------------------------- /docx-wasm/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/tsconfig.node.json -------------------------------------------------------------------------------- /docx-wasm/tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/tsconfig.web.json -------------------------------------------------------------------------------- /docx-wasm/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/webpack.common.js -------------------------------------------------------------------------------- /docx-wasm/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/webpack.dev.js -------------------------------------------------------------------------------- /docx-wasm/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/docx-wasm/webpack.prod.js -------------------------------------------------------------------------------- /fixtures/after_lines/after_lines.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/after_lines/after_lines.docx -------------------------------------------------------------------------------- /fixtures/bom/bom.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bom/bom.docx -------------------------------------------------------------------------------- /fixtures/bookmark/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/bookmark/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/_rels/.rels -------------------------------------------------------------------------------- /fixtures/bookmark/bookmark.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/bookmark.docx -------------------------------------------------------------------------------- /fixtures/bookmark/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/bookmark/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/bookmark/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /fixtures/bookmark/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/word/document.xml -------------------------------------------------------------------------------- /fixtures/bookmark/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/bookmark/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/word/settings.xml -------------------------------------------------------------------------------- /fixtures/bookmark/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/bookmark/word/styles.xml -------------------------------------------------------------------------------- /fixtures/comment/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/comment/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/_rels/.rels -------------------------------------------------------------------------------- /fixtures/comment/cat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/cat.jpeg -------------------------------------------------------------------------------- /fixtures/comment/comment.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/comment.docx -------------------------------------------------------------------------------- /fixtures/comment/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/comment/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/comment/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /fixtures/comment/word/comments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/word/comments.xml -------------------------------------------------------------------------------- /fixtures/comment/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/word/document.xml -------------------------------------------------------------------------------- /fixtures/comment/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/comment/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/word/settings.xml -------------------------------------------------------------------------------- /fixtures/comment/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/comment/word/styles.xml -------------------------------------------------------------------------------- /fixtures/custom/custom.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/custom/custom.docx -------------------------------------------------------------------------------- /fixtures/decoration/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/decoration/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/decoration/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/decoration/_rels/.rels -------------------------------------------------------------------------------- /fixtures/decoration/decoration.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/decoration/decoration.docx -------------------------------------------------------------------------------- /fixtures/decoration/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/decoration/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/decoration/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/decoration/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/decoration/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/decoration/word/document.xml -------------------------------------------------------------------------------- /fixtures/decoration/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/decoration/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/decoration/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/decoration/word/settings.xml -------------------------------------------------------------------------------- /fixtures/decoration/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/decoration/word/styles.xml -------------------------------------------------------------------------------- /fixtures/del_in_ins/del_in_ins.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/del_in_ins/del_in_ins.docx -------------------------------------------------------------------------------- /fixtures/div/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/div/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/_rels/.rels -------------------------------------------------------------------------------- /fixtures/div/div.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/div.docx -------------------------------------------------------------------------------- /fixtures/div/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/div/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/div/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /fixtures/div/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/word/document.xml -------------------------------------------------------------------------------- /fixtures/div/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/div/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/word/settings.xml -------------------------------------------------------------------------------- /fixtures/div/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/word/styles.xml -------------------------------------------------------------------------------- /fixtures/div/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/word/theme/theme1.xml -------------------------------------------------------------------------------- /fixtures/div/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/word/webSettings.xml -------------------------------------------------------------------------------- /fixtures/div/word/webextensions/taskpanes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/div/word/webextensions/taskpanes.xml -------------------------------------------------------------------------------- /fixtures/dstrike/dstrike.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/dstrike/dstrike.docx -------------------------------------------------------------------------------- /fixtures/extended_comments/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/extended_comments/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/_rels/.rels -------------------------------------------------------------------------------- /fixtures/extended_comments/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/extended_comments/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/extended_comments/word/comments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/word/comments.xml -------------------------------------------------------------------------------- /fixtures/extended_comments/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/word/document.xml -------------------------------------------------------------------------------- /fixtures/extended_comments/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/extended_comments/word/header1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/word/header1.xml -------------------------------------------------------------------------------- /fixtures/extended_comments/word/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/word/numbering.xml -------------------------------------------------------------------------------- /fixtures/extended_comments/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/word/settings.xml -------------------------------------------------------------------------------- /fixtures/extended_comments/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/extended_comments/word/styles.xml -------------------------------------------------------------------------------- /fixtures/font/font.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/font/font.docx -------------------------------------------------------------------------------- /fixtures/footer/footer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/footer/footer.docx -------------------------------------------------------------------------------- /fixtures/footnotes/footnotes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/footnotes/footnotes.docx -------------------------------------------------------------------------------- /fixtures/from_doc/from_doc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/from_doc/from_doc.docx -------------------------------------------------------------------------------- /fixtures/grid_after/grid_after.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/grid_after/grid_after.docx -------------------------------------------------------------------------------- /fixtures/header_footer/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/header_footer/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/_rels/.rels -------------------------------------------------------------------------------- /fixtures/header_footer/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/header_footer/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/header_footer/header_footer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/header_footer.docx -------------------------------------------------------------------------------- /fixtures/header_footer/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/word/document.xml -------------------------------------------------------------------------------- /fixtures/header_footer/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/header_footer/word/footer1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/word/footer1.xml -------------------------------------------------------------------------------- /fixtures/header_footer/word/header1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/word/header1.xml -------------------------------------------------------------------------------- /fixtures/header_footer/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/word/settings.xml -------------------------------------------------------------------------------- /fixtures/header_footer/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/header_footer/word/styles.xml -------------------------------------------------------------------------------- /fixtures/hello_libre_office/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_libre_office/_rels/.rels -------------------------------------------------------------------------------- /fixtures/hello_libre_office/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_libre_office/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/hello_libre_office/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_libre_office/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/hello_libre_office/hello.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_libre_office/hello.docx -------------------------------------------------------------------------------- /fixtures/hello_libre_office/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_libre_office/word/document.xml -------------------------------------------------------------------------------- /fixtures/hello_libre_office/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_libre_office/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/hello_libre_office/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_libre_office/word/settings.xml -------------------------------------------------------------------------------- /fixtures/hello_libre_office/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_libre_office/word/styles.xml -------------------------------------------------------------------------------- /fixtures/hello_world/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/hello_world/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/_rels/.rels -------------------------------------------------------------------------------- /fixtures/hello_world/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/hello_world/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/hello_world/hello_world.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/hello_world.docx -------------------------------------------------------------------------------- /fixtures/hello_world/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/word/document.xml -------------------------------------------------------------------------------- /fixtures/hello_world/word/footer1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/word/footer1.xml -------------------------------------------------------------------------------- /fixtures/hello_world/word/footnotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/word/footnotes.xml -------------------------------------------------------------------------------- /fixtures/hello_world/word/header1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/word/header1.xml -------------------------------------------------------------------------------- /fixtures/hello_world/word/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/word/numbering.xml -------------------------------------------------------------------------------- /fixtures/hello_world/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hello_world/word/styles.xml -------------------------------------------------------------------------------- /fixtures/hidden/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/hidden/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/_rels/.rels -------------------------------------------------------------------------------- /fixtures/hidden/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/hidden/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/hidden/hidden.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/hidden.docx -------------------------------------------------------------------------------- /fixtures/hidden/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /fixtures/hidden/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/word/document.xml -------------------------------------------------------------------------------- /fixtures/hidden/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/hidden/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/word/settings.xml -------------------------------------------------------------------------------- /fixtures/hidden/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/hidden/word/styles.xml -------------------------------------------------------------------------------- /fixtures/history_libre_office/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/history_libre_office/_rels/.rels -------------------------------------------------------------------------------- /fixtures/history_libre_office/history.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/history_libre_office/history.docx -------------------------------------------------------------------------------- /fixtures/image/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/image/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/_rels/.rels -------------------------------------------------------------------------------- /fixtures/image/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/image/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/image/image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/image.docx -------------------------------------------------------------------------------- /fixtures/image/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /fixtures/image/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/word/document.xml -------------------------------------------------------------------------------- /fixtures/image/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/image/word/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/word/media/image1.png -------------------------------------------------------------------------------- /fixtures/image/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/word/settings.xml -------------------------------------------------------------------------------- /fixtures/image/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image/word/styles.xml -------------------------------------------------------------------------------- /fixtures/image_in_textbox/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_in_textbox/_rels/.rels -------------------------------------------------------------------------------- /fixtures/image_in_textbox/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_in_textbox/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/image_in_textbox/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_in_textbox/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/image_in_textbox/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_in_textbox/word/document.xml -------------------------------------------------------------------------------- /fixtures/image_in_textbox/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_in_textbox/word/settings.xml -------------------------------------------------------------------------------- /fixtures/image_in_textbox/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_in_textbox/word/styles.xml -------------------------------------------------------------------------------- /fixtures/image_node_docx/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/_rels/.rels -------------------------------------------------------------------------------- /fixtures/image_node_docx/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/image_node_docx/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/image_node_docx/image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/image.docx -------------------------------------------------------------------------------- /fixtures/image_node_docx/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/word/document.xml -------------------------------------------------------------------------------- /fixtures/image_node_docx/word/footer1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/word/footer1.xml -------------------------------------------------------------------------------- /fixtures/image_node_docx/word/footnotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/word/footnotes.xml -------------------------------------------------------------------------------- /fixtures/image_node_docx/word/header1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/word/header1.xml -------------------------------------------------------------------------------- /fixtures/image_node_docx/word/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/word/numbering.xml -------------------------------------------------------------------------------- /fixtures/image_node_docx/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/word/settings.xml -------------------------------------------------------------------------------- /fixtures/image_node_docx/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_node_docx/word/styles.xml -------------------------------------------------------------------------------- /fixtures/image_output/image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_output/image.docx -------------------------------------------------------------------------------- /fixtures/image_output_resized/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_output_resized/_rels/.rels -------------------------------------------------------------------------------- /fixtures/image_output_resized/image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_output_resized/image.docx -------------------------------------------------------------------------------- /fixtures/image_xml/image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/image_xml/image.xml -------------------------------------------------------------------------------- /fixtures/indent_word_online/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/indent_word_online/_rels/.rels -------------------------------------------------------------------------------- /fixtures/indent_word_online/indent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/indent_word_online/indent.docx -------------------------------------------------------------------------------- /fixtures/indent_word_online/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/indent_word_online/word/styles.xml -------------------------------------------------------------------------------- /fixtures/insert_table/insert_table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/insert_table/insert_table.docx -------------------------------------------------------------------------------- /fixtures/instr_links/instr_links.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/instr_links/instr_links.docx -------------------------------------------------------------------------------- /fixtures/issue554/issue554.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/issue554/issue554.docx -------------------------------------------------------------------------------- /fixtures/line_spacing/line_spacing.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/line_spacing/line_spacing.docx -------------------------------------------------------------------------------- /fixtures/link/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/link/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/_rels/.rels -------------------------------------------------------------------------------- /fixtures/link/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/link/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/link/link.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/link.docx -------------------------------------------------------------------------------- /fixtures/link/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /fixtures/link/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/word/document.xml -------------------------------------------------------------------------------- /fixtures/link/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/link/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/word/settings.xml -------------------------------------------------------------------------------- /fixtures/link/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/word/styles.xml -------------------------------------------------------------------------------- /fixtures/link/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/word/theme/theme1.xml -------------------------------------------------------------------------------- /fixtures/link/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/link/word/webSettings.xml -------------------------------------------------------------------------------- /fixtures/lvl_override/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/.rels -------------------------------------------------------------------------------- /fixtures/lvl_override/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/lvl_override/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/app.xml -------------------------------------------------------------------------------- /fixtures/lvl_override/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/core.xml -------------------------------------------------------------------------------- /fixtures/lvl_override/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/document.xml -------------------------------------------------------------------------------- /fixtures/lvl_override/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/fontTable.xml -------------------------------------------------------------------------------- /fixtures/lvl_override/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/numbering.xml -------------------------------------------------------------------------------- /fixtures/lvl_override/override.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/override.docx -------------------------------------------------------------------------------- /fixtures/lvl_override/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/settings.xml -------------------------------------------------------------------------------- /fixtures/lvl_override/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/styles.xml -------------------------------------------------------------------------------- /fixtures/lvl_override/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/lvl_override/webSettings.xml -------------------------------------------------------------------------------- /fixtures/nested_comments/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_comments/_rels/.rels -------------------------------------------------------------------------------- /fixtures/nested_comments/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_comments/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/nested_comments/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_comments/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/nested_comments/word/comments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_comments/word/comments.xml -------------------------------------------------------------------------------- /fixtures/nested_comments/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_comments/word/document.xml -------------------------------------------------------------------------------- /fixtures/nested_comments/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_comments/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/nested_comments/word/people.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_comments/word/people.xml -------------------------------------------------------------------------------- /fixtures/nested_comments/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_comments/word/settings.xml -------------------------------------------------------------------------------- /fixtures/nested_comments/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_comments/word/styles.xml -------------------------------------------------------------------------------- /fixtures/nested_table/nested_table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/nested_table/nested_table.docx -------------------------------------------------------------------------------- /fixtures/numbering/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/numbering/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/_rels/.rels -------------------------------------------------------------------------------- /fixtures/numbering/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/numbering/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/numbering/numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/numbering.docx -------------------------------------------------------------------------------- /fixtures/numbering/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/word/document.xml -------------------------------------------------------------------------------- /fixtures/numbering/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/numbering/word/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/word/numbering.xml -------------------------------------------------------------------------------- /fixtures/numbering/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/word/settings.xml -------------------------------------------------------------------------------- /fixtures/numbering/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/numbering/word/styles.xml -------------------------------------------------------------------------------- /fixtures/outline_lvl/outline_lvl.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/outline_lvl/outline_lvl.docx -------------------------------------------------------------------------------- /fixtures/paragraph/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/paragraph/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/_rels/.rels -------------------------------------------------------------------------------- /fixtures/paragraph/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/paragraph/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/paragraph/paragraph.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/paragraph.docx -------------------------------------------------------------------------------- /fixtures/paragraph/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/word/document.xml -------------------------------------------------------------------------------- /fixtures/paragraph/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/paragraph/word/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/word/numbering.xml -------------------------------------------------------------------------------- /fixtures/paragraph/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/word/settings.xml -------------------------------------------------------------------------------- /fixtures/paragraph/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/paragraph/word/styles.xml -------------------------------------------------------------------------------- /fixtures/ptab/ptab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/ptab/ptab.docx -------------------------------------------------------------------------------- /fixtures/read_hang/read_hang.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/read_hang/read_hang.docx -------------------------------------------------------------------------------- /fixtures/run_property_change/ignore.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_property_change/ignore.docx -------------------------------------------------------------------------------- /fixtures/run_props/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_props/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/run_props/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_props/_rels/.rels -------------------------------------------------------------------------------- /fixtures/run_props/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_props/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/run_props/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_props/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/run_props/run_props.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_props/run_props.docx -------------------------------------------------------------------------------- /fixtures/run_props/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_props/word/document.xml -------------------------------------------------------------------------------- /fixtures/run_props/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_props/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/run_props/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_props/word/settings.xml -------------------------------------------------------------------------------- /fixtures/run_props/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/run_props/word/styles.xml -------------------------------------------------------------------------------- /fixtures/section_current/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_current/_rels/.rels -------------------------------------------------------------------------------- /fixtures/section_current/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_current/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/section_current/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_current/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/section_current/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_current/word/document.xml -------------------------------------------------------------------------------- /fixtures/section_current/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_current/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/section_current/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_current/word/settings.xml -------------------------------------------------------------------------------- /fixtures/section_current/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_current/word/styles.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/_rels/.rels -------------------------------------------------------------------------------- /fixtures/section_even_page/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/word/footer1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/word/footer1.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/word/footer2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/word/footer2.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/word/footer3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/word/footer3.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/word/header1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/word/header1.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/word/header2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/word/header2.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/word/header3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/word/header3.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/word/header4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/word/header4.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/word/header5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/word/header5.xml -------------------------------------------------------------------------------- /fixtures/section_even_page/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/section_even_page/word/styles.xml -------------------------------------------------------------------------------- /fixtures/shape/shape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/shape/shape.docx -------------------------------------------------------------------------------- /fixtures/spacing/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/spacing/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/_rels/.rels -------------------------------------------------------------------------------- /fixtures/spacing/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/spacing/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/spacing/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/word/document.xml -------------------------------------------------------------------------------- /fixtures/spacing/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/spacing/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/word/settings.xml -------------------------------------------------------------------------------- /fixtures/spacing/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/word/styles.xml -------------------------------------------------------------------------------- /fixtures/spacing/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/word/theme/theme1.xml -------------------------------------------------------------------------------- /fixtures/spacing/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spacing/word/webSettings.xml -------------------------------------------------------------------------------- /fixtures/spec_vanish/spec_vanish.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/spec_vanish/spec_vanish.docx -------------------------------------------------------------------------------- /fixtures/strike/strike.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/strike/strike.docx -------------------------------------------------------------------------------- /fixtures/tab_and_break/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tab_and_break/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/tab_and_break/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tab_and_break/_rels/.rels -------------------------------------------------------------------------------- /fixtures/tab_and_break/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tab_and_break/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/tab_and_break/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tab_and_break/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/tab_and_break/tab_and_break.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tab_and_break/tab_and_break.docx -------------------------------------------------------------------------------- /fixtures/tab_and_break/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tab_and_break/word/document.xml -------------------------------------------------------------------------------- /fixtures/tab_and_break/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tab_and_break/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/tab_and_break/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tab_and_break/word/settings.xml -------------------------------------------------------------------------------- /fixtures/tab_and_break/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tab_and_break/word/styles.xml -------------------------------------------------------------------------------- /fixtures/table_border/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/table_border/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/_rels/.rels -------------------------------------------------------------------------------- /fixtures/table_border/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/table_border/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/table_border/table_border.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/table_border.docx -------------------------------------------------------------------------------- /fixtures/table_border/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/word/document.xml -------------------------------------------------------------------------------- /fixtures/table_border/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/table_border/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/word/settings.xml -------------------------------------------------------------------------------- /fixtures/table_border/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/word/styles.xml -------------------------------------------------------------------------------- /fixtures/table_border/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/word/theme/theme1.xml -------------------------------------------------------------------------------- /fixtures/table_border/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_border/word/webSettings.xml -------------------------------------------------------------------------------- /fixtures/table_docx/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/table_docx/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/_rels/.rels -------------------------------------------------------------------------------- /fixtures/table_docx/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/table_docx/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/table_docx/table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/table.docx -------------------------------------------------------------------------------- /fixtures/table_docx/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/word/document.xml -------------------------------------------------------------------------------- /fixtures/table_docx/word/footer1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/word/footer1.xml -------------------------------------------------------------------------------- /fixtures/table_docx/word/footnotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/word/footnotes.xml -------------------------------------------------------------------------------- /fixtures/table_docx/word/header1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/word/header1.xml -------------------------------------------------------------------------------- /fixtures/table_docx/word/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/word/numbering.xml -------------------------------------------------------------------------------- /fixtures/table_docx/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/word/settings.xml -------------------------------------------------------------------------------- /fixtures/table_docx/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_docx/word/styles.xml -------------------------------------------------------------------------------- /fixtures/table_indent/table_indent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_indent/table_indent.docx -------------------------------------------------------------------------------- /fixtures/table_libre_office/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_libre_office/_rels/.rels -------------------------------------------------------------------------------- /fixtures/table_libre_office/table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_libre_office/table.docx -------------------------------------------------------------------------------- /fixtures/table_libre_office/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_libre_office/word/styles.xml -------------------------------------------------------------------------------- /fixtures/table_style/table_style.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_style/table_style.docx -------------------------------------------------------------------------------- /fixtures/table_valign/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_valign/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/table_valign/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_valign/_rels/.rels -------------------------------------------------------------------------------- /fixtures/table_valign/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_valign/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/table_valign/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_valign/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/table_valign/table_valign.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_valign/table_valign.docx -------------------------------------------------------------------------------- /fixtures/table_valign/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_valign/word/document.xml -------------------------------------------------------------------------------- /fixtures/table_valign/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_valign/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/table_valign/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_valign/word/settings.xml -------------------------------------------------------------------------------- /fixtures/table_valign/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_valign/word/styles.xml -------------------------------------------------------------------------------- /fixtures/table_word_online/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_word_online/_rels/.rels -------------------------------------------------------------------------------- /fixtures/table_word_online/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_word_online/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/table_word_online/table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_word_online/table.docx -------------------------------------------------------------------------------- /fixtures/table_word_online/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/table_word_online/word/styles.xml -------------------------------------------------------------------------------- /fixtures/textbox/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/textbox/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/_rels/.rels -------------------------------------------------------------------------------- /fixtures/textbox/customXml/item1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/customXml/item1.xml -------------------------------------------------------------------------------- /fixtures/textbox/customXml/itemProps1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/customXml/itemProps1.xml -------------------------------------------------------------------------------- /fixtures/textbox/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/textbox/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/textbox/textbox.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/textbox.docx -------------------------------------------------------------------------------- /fixtures/textbox/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/word/document.xml -------------------------------------------------------------------------------- /fixtures/textbox/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/textbox/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/word/settings.xml -------------------------------------------------------------------------------- /fixtures/textbox/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/word/styles.xml -------------------------------------------------------------------------------- /fixtures/textbox/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/word/theme/theme1.xml -------------------------------------------------------------------------------- /fixtures/textbox/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/textbox/word/webSettings.xml -------------------------------------------------------------------------------- /fixtures/toc0/toc0.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/toc0/toc0.docx -------------------------------------------------------------------------------- /fixtures/toc1/toc1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/toc1/toc1.docx -------------------------------------------------------------------------------- /fixtures/tr2bl/tr2bl.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/tr2bl/tr2bl.docx -------------------------------------------------------------------------------- /fixtures/vert_align/vert_align.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/vert_align/vert_align.docx -------------------------------------------------------------------------------- /fixtures/without_numid/without_numid.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/without_numid/without_numid.docx -------------------------------------------------------------------------------- /fixtures/word_default/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/[Content_Types].xml -------------------------------------------------------------------------------- /fixtures/word_default/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/_rels/.rels -------------------------------------------------------------------------------- /fixtures/word_default/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/docProps/app.xml -------------------------------------------------------------------------------- /fixtures/word_default/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/docProps/core.xml -------------------------------------------------------------------------------- /fixtures/word_default/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/word/document.xml -------------------------------------------------------------------------------- /fixtures/word_default/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/word/fontTable.xml -------------------------------------------------------------------------------- /fixtures/word_default/word/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/word/numbering.xml -------------------------------------------------------------------------------- /fixtures/word_default/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/word/settings.xml -------------------------------------------------------------------------------- /fixtures/word_default/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/word/styles.xml -------------------------------------------------------------------------------- /fixtures/word_default/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/word/theme/theme1.xml -------------------------------------------------------------------------------- /fixtures/word_default/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/word/webSettings.xml -------------------------------------------------------------------------------- /fixtures/word_default/word_default.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/fixtures/word_default/word_default.docx -------------------------------------------------------------------------------- /hello.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/hello.docx -------------------------------------------------------------------------------- /hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/hello.json -------------------------------------------------------------------------------- /image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/image.docx -------------------------------------------------------------------------------- /images/cat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/images/cat.jpeg -------------------------------------------------------------------------------- /images/cat_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/images/cat_min.jpg -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/logo.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/makefile -------------------------------------------------------------------------------- /output/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/examples/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/js/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/docx-rs/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | 1.81 -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 4 2 | --------------------------------------------------------------------------------