Metadata-Version: 2.4
Name: obsidian-to-typst
Version: 0.2.2
Summary: Convert Obsidian vault documents to typst and pdfs
Project-URL: repository, https://github.com/drbartling/obsidian-to-typst
Author-email: Ryan Bartling <ryan.bartling@gmail.com>
License-Expression: MIT
Requires-Python: <3.14,>=3.11
Requires-Dist: click>=8.2.1
Requires-Dist: colorama>=0.4.6
Requires-Dist: colored-traceback>=0.3.0
Requires-Dist: coloredlogs>=15.0.1
Requires-Dist: pydantic>=2.7.1
Description-Content-Type: text/markdown

# Obsidian to Typst

This utility attempts to make it easy to convert markdown documents written using obsidian into PDFs.

## Requirements

- typst
- mermaid
- mutool

## Getting Started

This project uses python [poetry](https://python-poetry.org/).  Follow the [intallation instructions](https://python-poetry.org/docs/#installation) for poetry.

Install typst using a package manager or `cargo install`

Run `poetry install` and `poetry shell` to install and and activate the python virtual environment.

Than, run `obsidian_to_typst .\examples\feature_guide\Widget.md` to convert the example document to a PDF.  The PDF will be placed in `.\examples\feature_guide\output\Widget.pdf`.

```powershell
watchexec --clear=clear --exts py "uv run ruff format && uv run ruff check --fix && uv run pytest && uv run obsidian-to-typst ./examples/feature_guide/Widget.md"
```
