Metadata-Version: 2.5
Name: markdown-cv
Version: 0.1.0
Summary: Build polished, paginated CV PDFs from editable Markdown
Project-URL: Homepage, https://github.com/andre-motta/markdown_cv
Project-URL: Repository, https://github.com/andre-motta/markdown_cv
Project-URL: Issues, https://github.com/andre-motta/markdown_cv/issues
Author: Andre Lustosa
License: MIT License
        
        Copyright (c) 2026 Andre Lustosa
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: cli,cv,markdown,pdf,resume
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Text Processing :: Markup :: Markdown
Requires-Python: >=3.10
Requires-Dist: markdown-it-py<5,>=4.0
Requires-Dist: pyyaml<7,>=6.0
Description-Content-Type: text/markdown

# markdown_cv

`markdown_cv` turns an editable Markdown resume into a polished Letter-size PDF. It supports YAML contact metadata, Markdown tables, explicit page breaks, bundled resume styling, and optional CSS overrides.

[![PyPI](https://img.shields.io/pypi/v/markdown-cv.svg)](https://pypi.org/project/markdown-cv/)

## Requirements

- Python 3.10 or newer
- Google Chrome or Chromium

## Install

```bash
python3 -m pip install .
```

## Build a resume

```bash
markdown-cv build examples/sample_cv.md --output sample_cv.pdf
```

Use `<!-- pagebreak -->` on its own line to start a new PDF page. Contact information belongs in the YAML block at the top of the source. The sample contains only fictional placeholder information.

To keep the intermediate HTML for browser inspection:

```bash
markdown-cv build examples/sample_cv.md --output sample_cv.pdf --html-output sample_cv.html
```

To override the bundled layout:

```bash
markdown-cv build cv.md --output cv.pdf --style custom.css
```

## Development

```bash
python3 -m pip install -e .
python3 -m unittest discover -s tests
```
