├── .gitignore ├── LICENSE ├── README.md ├── dist ├── docx2md-1.0.0-py3-none-any.whl └── docx2md-1.0.1-py3-none-any.whl ├── example ├── example.docx └── example │ ├── README.md │ └── media │ ├── image1.png │ ├── image2.png │ ├── image3.gif │ └── image4.jpg ├── jp-README.md ├── pyproject.toml ├── src └── docx2md │ ├── __init__.py │ ├── __main__.py │ ├── convert.py │ ├── converter.py │ ├── docxfile.py │ ├── docxmedia.py │ ├── utils.py │ └── version.py └── tests ├── data ├── dummy.txt ├── dummy.zip ├── heading.docx ├── heading │ └── README.md ├── image.docx ├── image │ ├── README.md │ └── media │ │ ├── image1.png │ │ ├── image2.png │ │ └── image3.gif ├── list.docx ├── list │ └── README.md ├── paragraph.docx ├── paragraph │ └── README.md ├── table.docx └── table │ └── README.md ├── test_docxfile.py ├── test_docxmedia.py ├── test_drawing.py ├── test_function.py └── test_media.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/README.md -------------------------------------------------------------------------------- /dist/docx2md-1.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/dist/docx2md-1.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/docx2md-1.0.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/dist/docx2md-1.0.1-py3-none-any.whl -------------------------------------------------------------------------------- /example/example.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/example/example.docx -------------------------------------------------------------------------------- /example/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/example/example/README.md -------------------------------------------------------------------------------- /example/example/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/example/example/media/image1.png -------------------------------------------------------------------------------- /example/example/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/example/example/media/image2.png -------------------------------------------------------------------------------- /example/example/media/image3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/example/example/media/image3.gif -------------------------------------------------------------------------------- /example/example/media/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/example/example/media/image4.jpg -------------------------------------------------------------------------------- /jp-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/jp-README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/docx2md/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/src/docx2md/__init__.py -------------------------------------------------------------------------------- /src/docx2md/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/src/docx2md/__main__.py -------------------------------------------------------------------------------- /src/docx2md/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/src/docx2md/convert.py -------------------------------------------------------------------------------- /src/docx2md/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/src/docx2md/converter.py -------------------------------------------------------------------------------- /src/docx2md/docxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/src/docx2md/docxfile.py -------------------------------------------------------------------------------- /src/docx2md/docxmedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/src/docx2md/docxmedia.py -------------------------------------------------------------------------------- /src/docx2md/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/src/docx2md/utils.py -------------------------------------------------------------------------------- /src/docx2md/version.py: -------------------------------------------------------------------------------- 1 | VERSION = "1.0.4" 2 | -------------------------------------------------------------------------------- /tests/data/dummy.txt: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /tests/data/dummy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/dummy.zip -------------------------------------------------------------------------------- /tests/data/heading.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/heading.docx -------------------------------------------------------------------------------- /tests/data/heading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/heading/README.md -------------------------------------------------------------------------------- /tests/data/image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/image.docx -------------------------------------------------------------------------------- /tests/data/image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/image/README.md -------------------------------------------------------------------------------- /tests/data/image/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/image/media/image1.png -------------------------------------------------------------------------------- /tests/data/image/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/image/media/image2.png -------------------------------------------------------------------------------- /tests/data/image/media/image3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/image/media/image3.gif -------------------------------------------------------------------------------- /tests/data/list.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/list.docx -------------------------------------------------------------------------------- /tests/data/list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/list/README.md -------------------------------------------------------------------------------- /tests/data/paragraph.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/paragraph.docx -------------------------------------------------------------------------------- /tests/data/paragraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/paragraph/README.md -------------------------------------------------------------------------------- /tests/data/table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/table.docx -------------------------------------------------------------------------------- /tests/data/table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/data/table/README.md -------------------------------------------------------------------------------- /tests/test_docxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/test_docxfile.py -------------------------------------------------------------------------------- /tests/test_docxmedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/test_docxmedia.py -------------------------------------------------------------------------------- /tests/test_drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/test_drawing.py -------------------------------------------------------------------------------- /tests/test_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/test_function.py -------------------------------------------------------------------------------- /tests/test_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogatana/docx2md/HEAD/tests/test_media.py --------------------------------------------------------------------------------