Metadata-Version: 2.4
Name: mnmd-anki-sync
Version: 0.1.2
Summary: Sync mnemonic markdown files to Anki with rich cloze deletion syntax
Keywords: anki,flashcards,spaced-repetition,markdown,cloze-deletion,learning,education,ankiconnect
Author: Aidan McHold Campbell
Author-email: Aidan McHold Campbell <aidanmcholdcampbell@gmail.com>
License-Expression: Apache-2.0
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Apache Software 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: Topic :: Education
Classifier: Topic :: Text Processing :: Markup :: Markdown
Classifier: Typing :: Typed
Requires-Dist: typer[all]>=0.9.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: requests>=2.31.0
Requires-Dist: rich>=13.0.0
Requires-Dist: pyyaml>=6.0.0
Requires-Dist: markdown>=3.5.0
Requires-Dist: pytest>=7.4.0 ; extra == 'dev'
Requires-Dist: pytest-cov>=4.1.0 ; extra == 'dev'
Requires-Dist: pytest-mock>=3.12.0 ; extra == 'dev'
Requires-Dist: black>=23.0.0 ; extra == 'dev'
Requires-Dist: ruff>=0.1.0 ; extra == 'dev'
Requires-Dist: mypy>=1.7.0 ; extra == 'dev'
Requires-Dist: types-requests>=2.31.0 ; extra == 'dev'
Requires-Dist: types-pyyaml>=6.0.0 ; extra == 'dev'
Maintainer: Aidan McHold Campbell
Maintainer-email: Aidan McHold Campbell <aidanmcholdcampbell@gmail.com>
Requires-Python: >=3.10
Project-URL: Changelog, https://github.com/am-campbell/mnmd-anki-sync/blob/main/CHANGELOG.md
Project-URL: Documentation, https://github.com/am-campbell/mnmd-anki-sync#readme
Project-URL: Homepage, https://github.com/am-campbell/mnmd-anki-sync
Project-URL: Issues, https://github.com/am-campbell/mnmd-anki-sync/issues
Project-URL: Repository, https://github.com/am-campbell/mnmd-anki-sync.git
Provides-Extra: dev
Description-Content-Type: text/markdown

# MNMD Anki Sync

[![CI](https://github.com/am-campbell/mnmd-anki-sync/actions/workflows/ci.yml/badge.svg)](https://github.com/am-campbell/mnmd-anki-sync/actions/workflows/ci.yml)
[![PyPI version](https://badge.fury.io/py/mnmd-anki-sync.svg)](https://badge.fury.io/py/mnmd-anki-sync)
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Sync mnemonic markdown files to Anki with rich cloze deletion syntax.

## Features

- **Rich cloze syntax**: Basic, grouped, and sequence clozes
- **Hints and extras**: Add hints (`{{answer|hint}}`) and extra info (`{{answer<extra}}`)
- **Math support**: LaTeX equations (`$inline$` and `$$block$$`) automatically converted to Anki format
- **Markdown rendering**: Bold, italic, lists, images, code blocks, line breaks
- **Scope control**: Specify paragraph context for each cloze with `[-before,after]`
- **Smart updates**: Automatically tracks Anki IDs to prevent duplicates
- **Editor links**: Open source files from Anki in VS Code, VSCodium, Neovim, or Obsidian
- **Dry-run mode**: Preview changes before syncing with `--dry-run`
- **Type-safe**: Built with Pydantic for robust data validation
- **Well-tested**: 282 unit tests with 94% code coverage

## Installation

### For Users

**Recommended: Install with pipx** (installs in isolated environment)
```bash
pipx install mnmd-anki-sync
```

**Alternative: Install with pip**
```bash
pip install mnmd-anki-sync
```

**Or install with uv**
```bash
uv pip install mnmd-anki-sync
```

**Install from GitHub** (latest development version)
```bash
pip install git+https://github.com/am-campbell/mnmd-anki-sync.git
```

### For Developers

Clone the repository and install with uv:
```bash
git clone https://github.com/am-campbell/mnmd-anki-sync.git
cd mnmd-anki-sync
uv sync --extra dev
```

## Quick Start

1. Make sure Anki is running with [AnkiConnect](https://ankiweb.net/shared/info/2055492159) installed

2. View the syntax guide:

```bash
mnmd syntax
```

3. Create a markdown file with cloze deletions:

```markdown
The capital of France is {{Paris}}.

My favorite languages are {{1>Python}} and {{1>Rust}}.
```

Any paragraph containing `{{...}}` becomes a flashcard automatically.

4. Sync to Anki:

```bash
mnmd sync myfile.md --deck "My Deck"
```

## Syntax Guide

Run `mnmd syntax` to view the complete syntax documentation, or see below for quick examples.

### Basic Cloze
```markdown
The capital of France is {{Paris}}.
```
Creates one card with "The capital of France is [...]"

### Grouped Cloze
```markdown
My favorite languages are {{1>Python}} and {{1>Rust}}.
```
Both items are hidden together on the same card: "My favorite languages are [...] and [...]"

### Sequence Cloze
```markdown
Steps to make coffee:
{{1.1>Grind beans}}
{{1.2>Add hot water}}
{{1.3>Wait and enjoy}}
```
Creates progressive reveal: first step hidden, then second, then third

### Hints and Extras
```markdown
Python is a {{dynamically typed|type checking happens at runtime}} language.
The package manager is {{pip<PyPI hosts over 400,000 packages}}.
```
- `|hint` adds hint text shown on card front
- `<extra` adds extra information shown on card back
- Combine: `{{answer|hint<extra}}`

### Math Support
```markdown
Einstein's equation: {{$E = mc^2$}}
```
LaTeX math (`$inline$` and `$$block$$`) is automatically converted to Anki's format

### Scope Modifiers
```markdown
Context paragraph with background info.

The answer is {{here}}[-1].
```
The `[-1]` includes the previous paragraph in the card context.
- `[-1]` = include 1 paragraph before
- `[1]` = include 1 paragraph after
- `[-1,1]` = include 1 before and 1 after

### Explicit Context Blocks (Optional)
```markdown
> ?
> Use block quotes starting with "> ?" when you want
> full control over multi-paragraph card content.
> The cloze is {{here}}.
```
This is optional - paragraphs with clozes work automatically.

## CLI Commands

```bash
# Sync files
mnmd sync file.md --deck "Biology" --tags "chapter1"

# Sync with specific editor
mnmd sync file.md --editor nvim
mnmd sync file.md --editor vscode

# Validate syntax
mnmd validate file.md

# Show syntax guide (opens in pager)
mnmd syntax

# Show syntax guide without pager (direct output)
mnmd syntax --no-pager

# Show version
mnmd version
```

## Editor Configuration

Set your preferred editor for source links in Anki cards. Choose from:

- `vscode` - Visual Studio Code (default, works out of box)
- `vscodium` - VSCodium (works out of box)
- `obsidian` - Obsidian (works out of box)
- `file` - System default handler (works out of box)
- `nvim` - Neovim (requires setup, see [EDITOR_SETUP.md](EDITOR_SETUP.md))

**Config file (`~/.mnmdrc`):**
```yaml
editor_protocol: vscode  # or nvim, vscodium, obsidian, file
default_deck: My Deck
default_tags:
  - mnmd
```

**Command line:**
```bash
mnmd sync file.md --editor nvim
```

**For Neovim users:** The `nvim://` protocol requires custom setup. Either:
1. Use `file` protocol (easiest): `editor_protocol: file`
2. Register `nvim://` handler (see [EDITOR_SETUP.md](EDITOR_SETUP.md))

The `file` protocol opens files with your system's default markdown editor.

## Development

```bash
# Run tests
uv run pytest

# Type check
uv run mypy src
```

## For AI Agents & LLM Integration

If you're building tools that generate mnemonic markdown or integrating LLMs to create flashcards, see **[agents-syntax.md](agents-syntax.md)** for:

- Precise syntax specification optimized for LLM parsing
- Complete pattern reference with regex-like precision
- Common pitfalls and error prevention
- Validation checklist
- Quick reference table

This file provides unambiguous rules for programmatic generation of valid MNMD syntax.

## Contributing

Contributions welcome! Please:
1. Fork the repository
2. Create a feature branch
3. Add tests for new features
4. Ensure all tests pass: `uv run pytest`
5. Submit a pull request

## Publishing & Distribution

See [DISTRIBUTION.md](DISTRIBUTION.md) for instructions on publishing releases to PyPI and GitHub.

## License

Apache 2.0 - See [LICENSE](LICENSE) file for details
