Metadata-Version: 2.4
Name: yamz-md
Version: 0.1.0
Summary: Yet Another Markdown Zip bundler
Project-URL: Homepage, https://github.com/daviddekoning/yamz
Project-URL: Repository, https://github.com/daviddekoning/yamz
Project-URL: Issues, https://github.com/daviddekoning/yamz/issues
Author: David de Koning
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing :: Markup :: Markdown
Requires-Python: >=3.10
Description-Content-Type: text/markdown

<div align="center">
<img src="yamz.png" width=300px/>
</div>

# YAMZ

Yet Another Markdown Zip bundler — package a markdown file and all its referenced media into a single portable `.mz` archive.

## Installation

```
pip install yamz-md
```

## Usage

```
yamz my-document.md
```

This creates `my-document.mz` containing the markdown file, all referenced images, linked markdown files, and a `root.txt` entry point.

## Format

A `.mz` file is a standard ZIP archive containing:

- **root.txt** — a single line with the relative path to the primary markdown file
- **Markdown files** — the main document and any linked markdown files
- **Assets** — all referenced images, videos, and other media

All internal references use relative paths that resolve correctly within the archive.

## License

MIT
