docx-to-markdown 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: docx-to-markdown
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Convert DOCX to Markdown with Word-faithful pages, headers, footers, comments, and tracked changes. Placeholder release; the first working release follows.
|
|
5
|
+
Project-URL: Homepage, https://docx-editor.dev
|
|
6
|
+
Project-URL: Documentation, https://www.docx-editor.dev/docs/2.x/export/markdown
|
|
7
|
+
Project-URL: Source, https://github.com/eigenpal/docx-editor
|
|
8
|
+
Project-URL: Issues, https://github.com/eigenpal/docx-editor/issues
|
|
9
|
+
Author: EigenPal
|
|
10
|
+
License-Expression: Apache-2.0
|
|
11
|
+
Keywords: converter,docx,markdown,pagination,word
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Text Processing :: Markup :: Markdown
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# docx-to-markdown
|
|
19
|
+
|
|
20
|
+
Convert DOCX to Markdown with the layout engine behind [docx-editor.dev](https://docx-editor.dev):
|
|
21
|
+
the document body, one Markdown projection per printed page, headers, footers, comments, and
|
|
22
|
+
tracked changes.
|
|
23
|
+
|
|
24
|
+
This is a placeholder release that holds the package name. The first working release wraps the
|
|
25
|
+
[`@docx-editor.dev/docx-to-markdown`](https://www.npmjs.com/package/@docx-editor.dev/docx-to-markdown)
|
|
26
|
+
converter as a self-contained executable, so no Node.js installation is required. Follow progress in
|
|
27
|
+
the [docx-editor repository](https://github.com/eigenpal/docx-editor).
|
|
28
|
+
|
|
29
|
+
Until then, use the Node.js package or the
|
|
30
|
+
[Markdown export guide](https://www.docx-editor.dev/docs/2.x/export/markdown).
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# docx-to-markdown
|
|
2
|
+
|
|
3
|
+
Convert DOCX to Markdown with the layout engine behind [docx-editor.dev](https://docx-editor.dev):
|
|
4
|
+
the document body, one Markdown projection per printed page, headers, footers, comments, and
|
|
5
|
+
tracked changes.
|
|
6
|
+
|
|
7
|
+
This is a placeholder release that holds the package name. The first working release wraps the
|
|
8
|
+
[`@docx-editor.dev/docx-to-markdown`](https://www.npmjs.com/package/@docx-editor.dev/docx-to-markdown)
|
|
9
|
+
converter as a self-contained executable, so no Node.js installation is required. Follow progress in
|
|
10
|
+
the [docx-editor repository](https://github.com/eigenpal/docx-editor).
|
|
11
|
+
|
|
12
|
+
Until then, use the Node.js package or the
|
|
13
|
+
[Markdown export guide](https://www.docx-editor.dev/docs/2.x/export/markdown).
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.25"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "docx-to-markdown"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Convert DOCX to Markdown with Word-faithful pages, headers, footers, comments, and tracked changes. Placeholder release; the first working release follows."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [{ name = "EigenPal" }]
|
|
13
|
+
keywords = ["docx", "markdown", "converter", "word", "pagination"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Topic :: Text Processing :: Markup :: Markdown",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://docx-editor.dev"
|
|
22
|
+
Documentation = "https://www.docx-editor.dev/docs/2.x/export/markdown"
|
|
23
|
+
Source = "https://github.com/eigenpal/docx-editor"
|
|
24
|
+
Issues = "https://github.com/eigenpal/docx-editor/issues"
|
|
25
|
+
|
|
26
|
+
[tool.hatch.build.targets.wheel]
|
|
27
|
+
packages = ["src/docx_to_markdown"]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""Placeholder release of docx-to-markdown. The first working release follows."""
|
|
2
|
+
|
|
3
|
+
__version__ = "0.0.1"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def convert(*args, **kwargs):
|
|
7
|
+
raise NotImplementedError(
|
|
8
|
+
"docx-to-markdown 0.0.1 is a placeholder release. Upgrade to the first working "
|
|
9
|
+
"release, or use the @docx-editor.dev/docx-to-markdown Node.js package: "
|
|
10
|
+
"https://www.docx-editor.dev/docs/2.x/export/markdown"
|
|
11
|
+
)
|