Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/owez/mdcx
Seemless markdown to docx converter
https://github.com/owez/mdcx
converter docx markdown md
Last synced: 2 months ago
JSON representation
Seemless markdown to docx converter
- Host: GitHub
- URL: https://github.com/owez/mdcx
- Owner: Owez
- Created: 2022-06-05T21:57:59.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-02T10:24:46.000Z (about 1 year ago)
- Last Synced: 2024-05-01T16:41:54.982Z (8 months ago)
- Topics: converter, docx, markdown, md
- Language: Python
- Homepage:
- Size: 5.76 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mdcx
Seamless markdown to docx converter.
## Example
Command-line:
```shell
$ mdcx hippo.md hippo.docx
```In Python:
```python
from mdcx import Documentdoc = Document("Markdown here!")
doc.save("example.docx")
```## Installation
To install mdcx, simply download it from PyPI:
```shell
$ pip3 install mdcx
```## Showcase
Here's a generated document from the `examples/` directory using the default theme:
![AirBnB Document](examples/images/airbnb.png)
## Roadmap
Here are the upcoming features for the development of mdcx:
- Markdown:
- [ ] Heading links
- [ ] Tables
- Quality-of-life
- [ ] Support `#` titles as well as the current yml titles
- [ ] Support a basic version of TOML `+++` metadata
- Extras:
- [ ] Local URIs become automatic managed appendixesThis project isn't finished as not all basic markdown has been implemented. The hope for this project is to be able to seamlessly convert all well-formatted markdown to a docx.