├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── _static │ └── placeholder_do_not_delete ├── conf.py ├── conformance.rst ├── development.rst ├── enumerated_list_detection.rst ├── export_mixins.rst ├── extending.rst ├── index.rst ├── installation.rst ├── plugins.rst ├── release_notes.rst └── usage.rst ├── helloworld.docx ├── pydocx ├── __init__.py ├── __main__.py ├── constants.py ├── exceptions.py ├── export │ ├── __init__.py │ ├── base.py │ ├── html.py │ ├── markdown.py │ ├── mixins │ │ ├── __init__.py │ │ └── faked_superscript_and_subscript.py │ └── numbering_span.py ├── models.py ├── openxml │ ├── __init__.py │ ├── drawing │ │ ├── __init__.py │ │ ├── blip.py │ │ ├── extents.py │ │ ├── graphic.py │ │ ├── graphic_data.py │ │ ├── pictures │ │ │ ├── __init__.py │ │ │ ├── blip_fill.py │ │ │ ├── picture.py │ │ │ └── shape_properties.py │ │ ├── transform_2d.py │ │ └── wordprocessing │ │ │ ├── __init__.py │ │ │ ├── anchor.py │ │ │ └── inline.py │ ├── markup_compatibility │ │ ├── __init__.py │ │ ├── alternate_content.py │ │ └── fallback.py │ ├── packaging │ │ ├── __init__.py │ │ ├── font_table_part.py │ │ ├── footnotes_part.py │ │ ├── image_part.py │ │ ├── main_document_part.py │ │ ├── numbering_definitions_part.py │ │ ├── open_xml_package.py │ │ ├── open_xml_part.py │ │ ├── open_xml_part_container.py │ │ ├── style_definitions_part.py │ │ └── word_processing_document.py │ ├── vml │ │ ├── __init__.py │ │ ├── image_data.py │ │ ├── rect.py │ │ ├── shape.py │ │ └── textbox.py │ └── wordprocessing │ │ ├── __init__.py │ │ ├── abstract_num.py │ │ ├── body.py │ │ ├── bookmark.py │ │ ├── br.py │ │ ├── deleted_run.py │ │ ├── deleted_text.py │ │ ├── document.py │ │ ├── drawing.py │ │ ├── embedded_object.py │ │ ├── field_char.py │ │ ├── field_code.py │ │ ├── footnote.py │ │ ├── footnote_reference.py │ │ ├── footnote_reference_mark.py │ │ ├── footnotes.py │ │ ├── hyperlink.py │ │ ├── inserted_run.py │ │ ├── level.py │ │ ├── level_override.py │ │ ├── no_break_hyphen.py │ │ ├── numbering.py │ │ ├── numbering_instance.py │ │ ├── numbering_properties.py │ │ ├── paragraph.py │ │ ├── paragraph_properties.py │ │ ├── picture.py │ │ ├── rfonts.py │ │ ├── run.py │ │ ├── run_properties.py │ │ ├── sdt_block.py │ │ ├── sdt_content_block.py │ │ ├── sdt_content_run.py │ │ ├── sdt_run.py │ │ ├── section_properties.py │ │ ├── simple_field.py │ │ ├── smart_tag_run.py │ │ ├── style.py │ │ ├── styles.py │ │ ├── tab_char.py │ │ ├── table.py │ │ ├── table_cell.py │ │ ├── table_cell_properties.py │ │ ├── table_row.py │ │ ├── text.py │ │ └── textbox_content.py ├── packaging.py ├── pydocx.py ├── test │ ├── __init__.py │ ├── document_builder.py │ ├── testcases.py │ └── utils.py ├── types.py └── util │ ├── __init__.py │ ├── memoize.py │ ├── uri.py │ ├── xml.py │ └── zip.py ├── requirements ├── docs.txt └── testing.txt ├── setup.py ├── tests ├── __init__.py ├── export │ ├── __init__.py │ ├── html │ │ ├── __init__.py │ │ ├── test_direct_formatting_bold_property.py │ │ ├── test_drawing_graphic_blip.py │ │ ├── test_field_code.py │ │ ├── test_footnote.py │ │ ├── test_heading.py │ │ ├── test_hyperlink.py │ │ ├── test_markup_compatibility.py │ │ ├── test_numbering.py │ │ ├── test_overrides.py │ │ ├── test_page_break.py │ │ ├── test_paragraph.py │ │ ├── test_property_hierarchy.py │ │ ├── test_rect.py │ │ ├── test_simple_field.py │ │ ├── test_style_based_on.py │ │ ├── test_tables.py │ │ ├── test_textbox.py │ │ └── test_xml_vulnerabilities.py │ ├── mixins │ │ ├── __init__.py │ │ └── test_faked_superscript_and_subscript.py │ ├── test_docx.py │ ├── test_numbering_span.py │ └── test_xml.py ├── failures │ └── .placeholder ├── fixtures │ ├── all_configured_styles.docx │ ├── all_configured_styles.html │ ├── attachment_is_tiff.docx │ ├── bigger_font_size_to_header.docx │ ├── convert_p_to_h.docx │ ├── export_from_googledocs.docx │ ├── export_from_googledocs.html │ ├── external_image.docx │ ├── external_image.html │ ├── fake_headings_by_length.docx │ ├── fake_subscript.docx │ ├── fake_subscript.html │ ├── fake_superscript.docx │ ├── fake_superscript.html │ ├── greek_alphabet.docx │ ├── has_image.docx │ ├── has_missing_image.docx │ ├── has_missing_image.html │ ├── has_title.docx │ ├── has_title.html │ ├── headers_with_full_line_styles.docx │ ├── image_data_inside_object_tag.docx │ ├── include_tabs.docx │ ├── include_tabs.html │ ├── inline_tags.docx │ ├── inline_tags.html │ ├── justification.docx │ ├── justification.html │ ├── list_in_table.docx │ ├── list_in_table.html │ ├── lists_with_margins.docx │ ├── lists_with_margins.html │ ├── lists_with_styles.docx │ ├── lists_with_styles.html │ ├── missing_numbering.docx │ ├── missing_numbering.html │ ├── missing_relationships.docx │ ├── missing_style.docx │ ├── missing_style.html │ ├── nested_lists.docx │ ├── nested_lists.html │ ├── nested_lists_different_num_ids.docx │ ├── nested_lists_different_num_ids.html │ ├── nested_table_rowspan.docx │ ├── nested_table_rowspan.html │ ├── nested_tables.docx │ ├── nested_tables.html │ ├── no_break_hyphen.docx │ ├── no_break_hyphen.html │ ├── paragraph_with_margins.docx │ ├── paragraph_with_margins.html │ ├── read_same_image_multiple_times.docx │ ├── read_same_image_multiple_times.html │ ├── resized_image.docx │ ├── rotate_image.docx │ ├── rotate_image.html │ ├── shift_enter.docx │ ├── shift_enter.html │ ├── simple.docx │ ├── simple.html │ ├── simple_lists.docx │ ├── simple_lists.html │ ├── simple_table.docx │ ├── simple_table.html │ ├── special_chars.docx │ ├── special_chars.html │ ├── styled_bolding.docx │ ├── styled_bolding.html │ ├── styled_color.docx │ ├── styled_color.html │ ├── super_and_subscript.docx │ ├── super_and_subscript.html │ ├── table_col_row_span.docx │ ├── table_col_row_span.html │ ├── table_with_multi_rowspan.docx │ ├── table_with_multi_rowspan.html │ ├── tables_in_lists.docx │ ├── tables_in_lists.html │ ├── textbox.docx │ ├── textbox.html │ ├── track_changes_on.docx │ ├── track_changes_on.html │ └── upper_alpha_all_bold.docx ├── openxml │ ├── __init__.py │ ├── packaging │ │ ├── __init__.py │ │ ├── test_footnotes_part.py │ │ ├── test_main_document_part.py │ │ ├── test_numbering_definitions_part.py │ │ └── test_word_processing_document.py │ ├── vml │ │ └── test_shape.py │ └── wordprocessing │ │ ├── __init__.py │ │ ├── test_abstract_num.py │ │ ├── test_body.py │ │ ├── test_hyperlink.py │ │ ├── test_level.py │ │ ├── test_level_override.py │ │ ├── test_numbering.py │ │ ├── test_numbering_instance.py │ │ ├── test_numbering_properties.py │ │ ├── test_paragraph.py │ │ ├── test_paragraph_properties.py │ │ ├── test_run.py │ │ ├── test_run_properties.py │ │ ├── test_style.py │ │ └── test_styles.py ├── templates │ ├── base.xml │ ├── drawing.xml │ ├── hyperlink.xml │ ├── insert.xml │ ├── linebreak.xml │ ├── numbering.xml │ ├── p.xml │ ├── pict.xml │ ├── r.xml │ ├── rect.xml │ ├── rpr.xml │ ├── sdt.xml │ ├── sectPr.xml │ ├── smart_tag.xml │ ├── style.xml │ ├── styles.xml │ ├── t.xml │ ├── table.xml │ ├── tc.xml │ ├── text_delete.xml │ └── tr.xml ├── test_main.py ├── test_models.py ├── test_packaging.py └── util │ ├── __init__.py │ ├── test_xml.py │ └── test_zip.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/placeholder_do_not_delete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/conformance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/conformance.rst -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/enumerated_list_detection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/enumerated_list_detection.rst -------------------------------------------------------------------------------- /docs/export_mixins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/export_mixins.rst -------------------------------------------------------------------------------- /docs/extending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/extending.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/plugins.rst -------------------------------------------------------------------------------- /docs/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/release_notes.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /helloworld.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/helloworld.docx -------------------------------------------------------------------------------- /pydocx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/__init__.py -------------------------------------------------------------------------------- /pydocx/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/__main__.py -------------------------------------------------------------------------------- /pydocx/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/constants.py -------------------------------------------------------------------------------- /pydocx/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/exceptions.py -------------------------------------------------------------------------------- /pydocx/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/export/__init__.py -------------------------------------------------------------------------------- /pydocx/export/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/export/base.py -------------------------------------------------------------------------------- /pydocx/export/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/export/html.py -------------------------------------------------------------------------------- /pydocx/export/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/export/markdown.py -------------------------------------------------------------------------------- /pydocx/export/mixins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/export/mixins/__init__.py -------------------------------------------------------------------------------- /pydocx/export/mixins/faked_superscript_and_subscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/export/mixins/faked_superscript_and_subscript.py -------------------------------------------------------------------------------- /pydocx/export/numbering_span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/export/numbering_span.py -------------------------------------------------------------------------------- /pydocx/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/models.py -------------------------------------------------------------------------------- /pydocx/openxml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydocx/openxml/drawing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/__init__.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/blip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/blip.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/extents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/extents.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/graphic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/graphic.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/graphic_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/graphic_data.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/pictures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydocx/openxml/drawing/pictures/blip_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/pictures/blip_fill.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/pictures/picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/pictures/picture.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/pictures/shape_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/pictures/shape_properties.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/transform_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/transform_2d.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/wordprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydocx/openxml/drawing/wordprocessing/anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/wordprocessing/anchor.py -------------------------------------------------------------------------------- /pydocx/openxml/drawing/wordprocessing/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/drawing/wordprocessing/inline.py -------------------------------------------------------------------------------- /pydocx/openxml/markup_compatibility/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/markup_compatibility/__init__.py -------------------------------------------------------------------------------- /pydocx/openxml/markup_compatibility/alternate_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/markup_compatibility/alternate_content.py -------------------------------------------------------------------------------- /pydocx/openxml/markup_compatibility/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/markup_compatibility/fallback.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/__init__.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/font_table_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/font_table_part.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/footnotes_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/footnotes_part.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/image_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/image_part.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/main_document_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/main_document_part.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/numbering_definitions_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/numbering_definitions_part.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/open_xml_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/open_xml_package.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/open_xml_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/open_xml_part.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/open_xml_part_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/open_xml_part_container.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/style_definitions_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/style_definitions_part.py -------------------------------------------------------------------------------- /pydocx/openxml/packaging/word_processing_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/packaging/word_processing_document.py -------------------------------------------------------------------------------- /pydocx/openxml/vml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/vml/__init__.py -------------------------------------------------------------------------------- /pydocx/openxml/vml/image_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/vml/image_data.py -------------------------------------------------------------------------------- /pydocx/openxml/vml/rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/vml/rect.py -------------------------------------------------------------------------------- /pydocx/openxml/vml/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/vml/shape.py -------------------------------------------------------------------------------- /pydocx/openxml/vml/textbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/vml/textbox.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/__init__.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/abstract_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/abstract_num.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/body.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/bookmark.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/br.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/br.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/deleted_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/deleted_run.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/deleted_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/deleted_text.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/document.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/drawing.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/embedded_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/embedded_object.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/field_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/field_char.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/field_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/field_code.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/footnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/footnote.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/footnote_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/footnote_reference.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/footnote_reference_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/footnote_reference_mark.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/footnotes.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/hyperlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/hyperlink.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/inserted_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/inserted_run.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/level.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/level_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/level_override.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/no_break_hyphen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/no_break_hyphen.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/numbering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/numbering.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/numbering_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/numbering_instance.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/numbering_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/numbering_properties.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/paragraph.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/paragraph_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/paragraph_properties.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/picture.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/rfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/rfonts.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/run.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/run_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/run_properties.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/sdt_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/sdt_block.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/sdt_content_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/sdt_content_block.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/sdt_content_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/sdt_content_run.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/sdt_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/sdt_run.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/section_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/section_properties.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/simple_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/simple_field.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/smart_tag_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/smart_tag_run.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/style.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/styles.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/tab_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/tab_char.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/table.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/table_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/table_cell.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/table_cell_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/table_cell_properties.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/table_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/table_row.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/text.py -------------------------------------------------------------------------------- /pydocx/openxml/wordprocessing/textbox_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/openxml/wordprocessing/textbox_content.py -------------------------------------------------------------------------------- /pydocx/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/packaging.py -------------------------------------------------------------------------------- /pydocx/pydocx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/pydocx.py -------------------------------------------------------------------------------- /pydocx/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/test/__init__.py -------------------------------------------------------------------------------- /pydocx/test/document_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/test/document_builder.py -------------------------------------------------------------------------------- /pydocx/test/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/test/testcases.py -------------------------------------------------------------------------------- /pydocx/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/test/utils.py -------------------------------------------------------------------------------- /pydocx/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/types.py -------------------------------------------------------------------------------- /pydocx/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydocx/util/memoize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/util/memoize.py -------------------------------------------------------------------------------- /pydocx/util/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/util/uri.py -------------------------------------------------------------------------------- /pydocx/util/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/util/xml.py -------------------------------------------------------------------------------- /pydocx/util/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/pydocx/util/zip.py -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/requirements/testing.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/export/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/export/html/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/export/html/test_direct_formatting_bold_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_direct_formatting_bold_property.py -------------------------------------------------------------------------------- /tests/export/html/test_drawing_graphic_blip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_drawing_graphic_blip.py -------------------------------------------------------------------------------- /tests/export/html/test_field_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_field_code.py -------------------------------------------------------------------------------- /tests/export/html/test_footnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_footnote.py -------------------------------------------------------------------------------- /tests/export/html/test_heading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_heading.py -------------------------------------------------------------------------------- /tests/export/html/test_hyperlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_hyperlink.py -------------------------------------------------------------------------------- /tests/export/html/test_markup_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_markup_compatibility.py -------------------------------------------------------------------------------- /tests/export/html/test_numbering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_numbering.py -------------------------------------------------------------------------------- /tests/export/html/test_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_overrides.py -------------------------------------------------------------------------------- /tests/export/html/test_page_break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_page_break.py -------------------------------------------------------------------------------- /tests/export/html/test_paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_paragraph.py -------------------------------------------------------------------------------- /tests/export/html/test_property_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_property_hierarchy.py -------------------------------------------------------------------------------- /tests/export/html/test_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_rect.py -------------------------------------------------------------------------------- /tests/export/html/test_simple_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_simple_field.py -------------------------------------------------------------------------------- /tests/export/html/test_style_based_on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_style_based_on.py -------------------------------------------------------------------------------- /tests/export/html/test_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_tables.py -------------------------------------------------------------------------------- /tests/export/html/test_textbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_textbox.py -------------------------------------------------------------------------------- /tests/export/html/test_xml_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/html/test_xml_vulnerabilities.py -------------------------------------------------------------------------------- /tests/export/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/export/mixins/test_faked_superscript_and_subscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/mixins/test_faked_superscript_and_subscript.py -------------------------------------------------------------------------------- /tests/export/test_docx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/test_docx.py -------------------------------------------------------------------------------- /tests/export/test_numbering_span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/test_numbering_span.py -------------------------------------------------------------------------------- /tests/export/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/export/test_xml.py -------------------------------------------------------------------------------- /tests/failures/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/all_configured_styles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/all_configured_styles.docx -------------------------------------------------------------------------------- /tests/fixtures/all_configured_styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/all_configured_styles.html -------------------------------------------------------------------------------- /tests/fixtures/attachment_is_tiff.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/attachment_is_tiff.docx -------------------------------------------------------------------------------- /tests/fixtures/bigger_font_size_to_header.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/bigger_font_size_to_header.docx -------------------------------------------------------------------------------- /tests/fixtures/convert_p_to_h.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/convert_p_to_h.docx -------------------------------------------------------------------------------- /tests/fixtures/export_from_googledocs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/export_from_googledocs.docx -------------------------------------------------------------------------------- /tests/fixtures/export_from_googledocs.html: -------------------------------------------------------------------------------- 1 |

Beauty will save the world.

2 | -------------------------------------------------------------------------------- /tests/fixtures/external_image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/external_image.docx -------------------------------------------------------------------------------- /tests/fixtures/external_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/external_image.html -------------------------------------------------------------------------------- /tests/fixtures/fake_headings_by_length.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/fake_headings_by_length.docx -------------------------------------------------------------------------------- /tests/fixtures/fake_subscript.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/fake_subscript.docx -------------------------------------------------------------------------------- /tests/fixtures/fake_subscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/fake_subscript.html -------------------------------------------------------------------------------- /tests/fixtures/fake_superscript.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/fake_superscript.docx -------------------------------------------------------------------------------- /tests/fixtures/fake_superscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/fake_superscript.html -------------------------------------------------------------------------------- /tests/fixtures/greek_alphabet.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/greek_alphabet.docx -------------------------------------------------------------------------------- /tests/fixtures/has_image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/has_image.docx -------------------------------------------------------------------------------- /tests/fixtures/has_missing_image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/has_missing_image.docx -------------------------------------------------------------------------------- /tests/fixtures/has_missing_image.html: -------------------------------------------------------------------------------- 1 |

AAA

2 | -------------------------------------------------------------------------------- /tests/fixtures/has_title.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/has_title.docx -------------------------------------------------------------------------------- /tests/fixtures/has_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/has_title.html -------------------------------------------------------------------------------- /tests/fixtures/headers_with_full_line_styles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/headers_with_full_line_styles.docx -------------------------------------------------------------------------------- /tests/fixtures/image_data_inside_object_tag.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/image_data_inside_object_tag.docx -------------------------------------------------------------------------------- /tests/fixtures/include_tabs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/include_tabs.docx -------------------------------------------------------------------------------- /tests/fixtures/include_tabs.html: -------------------------------------------------------------------------------- 1 |

AAA BBB

2 | -------------------------------------------------------------------------------- /tests/fixtures/inline_tags.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/inline_tags.docx -------------------------------------------------------------------------------- /tests/fixtures/inline_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/inline_tags.html -------------------------------------------------------------------------------- /tests/fixtures/justification.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/justification.docx -------------------------------------------------------------------------------- /tests/fixtures/justification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/justification.html -------------------------------------------------------------------------------- /tests/fixtures/list_in_table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/list_in_table.docx -------------------------------------------------------------------------------- /tests/fixtures/list_in_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/list_in_table.html -------------------------------------------------------------------------------- /tests/fixtures/lists_with_margins.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/lists_with_margins.docx -------------------------------------------------------------------------------- /tests/fixtures/lists_with_margins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/lists_with_margins.html -------------------------------------------------------------------------------- /tests/fixtures/lists_with_styles.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/lists_with_styles.docx -------------------------------------------------------------------------------- /tests/fixtures/lists_with_styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/lists_with_styles.html -------------------------------------------------------------------------------- /tests/fixtures/missing_numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/missing_numbering.docx -------------------------------------------------------------------------------- /tests/fixtures/missing_numbering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/missing_numbering.html -------------------------------------------------------------------------------- /tests/fixtures/missing_relationships.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/missing_relationships.docx -------------------------------------------------------------------------------- /tests/fixtures/missing_style.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/missing_style.docx -------------------------------------------------------------------------------- /tests/fixtures/missing_style.html: -------------------------------------------------------------------------------- 1 |

AAA

2 | -------------------------------------------------------------------------------- /tests/fixtures/nested_lists.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/nested_lists.docx -------------------------------------------------------------------------------- /tests/fixtures/nested_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/nested_lists.html -------------------------------------------------------------------------------- /tests/fixtures/nested_lists_different_num_ids.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/nested_lists_different_num_ids.docx -------------------------------------------------------------------------------- /tests/fixtures/nested_lists_different_num_ids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/nested_lists_different_num_ids.html -------------------------------------------------------------------------------- /tests/fixtures/nested_table_rowspan.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/nested_table_rowspan.docx -------------------------------------------------------------------------------- /tests/fixtures/nested_table_rowspan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/nested_table_rowspan.html -------------------------------------------------------------------------------- /tests/fixtures/nested_tables.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/nested_tables.docx -------------------------------------------------------------------------------- /tests/fixtures/nested_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/nested_tables.html -------------------------------------------------------------------------------- /tests/fixtures/no_break_hyphen.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/no_break_hyphen.docx -------------------------------------------------------------------------------- /tests/fixtures/no_break_hyphen.html: -------------------------------------------------------------------------------- 1 |

AAA-BBB

2 | -------------------------------------------------------------------------------- /tests/fixtures/paragraph_with_margins.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/paragraph_with_margins.docx -------------------------------------------------------------------------------- /tests/fixtures/paragraph_with_margins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/paragraph_with_margins.html -------------------------------------------------------------------------------- /tests/fixtures/read_same_image_multiple_times.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/read_same_image_multiple_times.docx -------------------------------------------------------------------------------- /tests/fixtures/read_same_image_multiple_times.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/read_same_image_multiple_times.html -------------------------------------------------------------------------------- /tests/fixtures/resized_image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/resized_image.docx -------------------------------------------------------------------------------- /tests/fixtures/rotate_image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/rotate_image.docx -------------------------------------------------------------------------------- /tests/fixtures/rotate_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/rotate_image.html -------------------------------------------------------------------------------- /tests/fixtures/shift_enter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/shift_enter.docx -------------------------------------------------------------------------------- /tests/fixtures/shift_enter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/shift_enter.html -------------------------------------------------------------------------------- /tests/fixtures/simple.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/simple.docx -------------------------------------------------------------------------------- /tests/fixtures/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/simple.html -------------------------------------------------------------------------------- /tests/fixtures/simple_lists.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/simple_lists.docx -------------------------------------------------------------------------------- /tests/fixtures/simple_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/simple_lists.html -------------------------------------------------------------------------------- /tests/fixtures/simple_table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/simple_table.docx -------------------------------------------------------------------------------- /tests/fixtures/simple_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/simple_table.html -------------------------------------------------------------------------------- /tests/fixtures/special_chars.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/special_chars.docx -------------------------------------------------------------------------------- /tests/fixtures/special_chars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/special_chars.html -------------------------------------------------------------------------------- /tests/fixtures/styled_bolding.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/styled_bolding.docx -------------------------------------------------------------------------------- /tests/fixtures/styled_bolding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/styled_bolding.html -------------------------------------------------------------------------------- /tests/fixtures/styled_color.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/styled_color.docx -------------------------------------------------------------------------------- /tests/fixtures/styled_color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/styled_color.html -------------------------------------------------------------------------------- /tests/fixtures/super_and_subscript.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/super_and_subscript.docx -------------------------------------------------------------------------------- /tests/fixtures/super_and_subscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/super_and_subscript.html -------------------------------------------------------------------------------- /tests/fixtures/table_col_row_span.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/table_col_row_span.docx -------------------------------------------------------------------------------- /tests/fixtures/table_col_row_span.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/table_col_row_span.html -------------------------------------------------------------------------------- /tests/fixtures/table_with_multi_rowspan.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/table_with_multi_rowspan.docx -------------------------------------------------------------------------------- /tests/fixtures/table_with_multi_rowspan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/table_with_multi_rowspan.html -------------------------------------------------------------------------------- /tests/fixtures/tables_in_lists.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/tables_in_lists.docx -------------------------------------------------------------------------------- /tests/fixtures/tables_in_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/tables_in_lists.html -------------------------------------------------------------------------------- /tests/fixtures/textbox.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/textbox.docx -------------------------------------------------------------------------------- /tests/fixtures/textbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/textbox.html -------------------------------------------------------------------------------- /tests/fixtures/track_changes_on.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/track_changes_on.docx -------------------------------------------------------------------------------- /tests/fixtures/track_changes_on.html: -------------------------------------------------------------------------------- 1 |

This was some content.

2 | -------------------------------------------------------------------------------- /tests/fixtures/upper_alpha_all_bold.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/fixtures/upper_alpha_all_bold.docx -------------------------------------------------------------------------------- /tests/openxml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/openxml/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/openxml/packaging/test_footnotes_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/packaging/test_footnotes_part.py -------------------------------------------------------------------------------- /tests/openxml/packaging/test_main_document_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/packaging/test_main_document_part.py -------------------------------------------------------------------------------- /tests/openxml/packaging/test_numbering_definitions_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/packaging/test_numbering_definitions_part.py -------------------------------------------------------------------------------- /tests/openxml/packaging/test_word_processing_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/packaging/test_word_processing_document.py -------------------------------------------------------------------------------- /tests/openxml/vml/test_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/vml/test_shape.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_abstract_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_abstract_num.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_body.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_hyperlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_hyperlink.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_level.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_level_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_level_override.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_numbering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_numbering.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_numbering_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_numbering_instance.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_numbering_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_numbering_properties.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_paragraph.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_paragraph_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_paragraph_properties.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_run.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_run_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_run_properties.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_style.py -------------------------------------------------------------------------------- /tests/openxml/wordprocessing/test_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/openxml/wordprocessing/test_styles.py -------------------------------------------------------------------------------- /tests/templates/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/base.xml -------------------------------------------------------------------------------- /tests/templates/drawing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/drawing.xml -------------------------------------------------------------------------------- /tests/templates/hyperlink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/hyperlink.xml -------------------------------------------------------------------------------- /tests/templates/insert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/insert.xml -------------------------------------------------------------------------------- /tests/templates/linebreak.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/templates/numbering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/numbering.xml -------------------------------------------------------------------------------- /tests/templates/p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/p.xml -------------------------------------------------------------------------------- /tests/templates/pict.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/pict.xml -------------------------------------------------------------------------------- /tests/templates/r.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/r.xml -------------------------------------------------------------------------------- /tests/templates/rect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/rect.xml -------------------------------------------------------------------------------- /tests/templates/rpr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/rpr.xml -------------------------------------------------------------------------------- /tests/templates/sdt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/sdt.xml -------------------------------------------------------------------------------- /tests/templates/sectPr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/sectPr.xml -------------------------------------------------------------------------------- /tests/templates/smart_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/smart_tag.xml -------------------------------------------------------------------------------- /tests/templates/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/style.xml -------------------------------------------------------------------------------- /tests/templates/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/styles.xml -------------------------------------------------------------------------------- /tests/templates/t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/t.xml -------------------------------------------------------------------------------- /tests/templates/table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/table.xml -------------------------------------------------------------------------------- /tests/templates/tc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/tc.xml -------------------------------------------------------------------------------- /tests/templates/text_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/text_delete.xml -------------------------------------------------------------------------------- /tests/templates/tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/templates/tr.xml -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/test_packaging.py -------------------------------------------------------------------------------- /tests/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/util/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/util/test_xml.py -------------------------------------------------------------------------------- /tests/util/test_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tests/util/test_zip.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForOpenScience/pydocx/HEAD/tox.ini --------------------------------------------------------------------------------