Metadata-Version: 2.4
Name: docx2markdown_custom
Version: 0.1.0
Summary: Convert .docx files to Markdown, preserving headings, paragraphs, and tables.
Author-email: Sid Mathur <sid.mathur@gmail.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: python-docx>=0.8.11

# docx2markdown_custom

Convert .docx files to Markdown, preserving headings, paragraphs, and tables.

## Installation

```sh
pip install docx2markdown_custom  # (after you publish to PyPI)
```

## Usage

```python
from docx2markdown_custom import docx_to_markdown_custom

with open('your_file.docx', 'rb') as f:
    docx_bytes = f.read()

markdown = docx_to_markdown_custom(docx_bytes)
print(markdown)
```

## Features
- Converts headings, paragraphs, and tables from .docx to Markdown
- Handles bold and italic text

## License
MIT 
