Metadata-Version: 2.4
Name: mkdocs2notion
Version: 0.2.1
Summary: Publish Markdown and mkdocs.yml-based documentation into Notion.
Project-URL: Homepage, https://github.com/mahbam42/mkdocs2notion
Project-URL: Repository, https://github.com/mahbam42/mkdocs2notion
Project-URL: Issues, https://github.com/mahbam42/mkdocs2notion/issues
Author-email: mahbam42 <mahbam42@gmail.com>
License: MIT
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: notion-client>=2.0.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: requests>=2.32.0
Requires-Dist: rich>=13.0
Requires-Dist: typer[all]>=0.9.0
Description-Content-Type: text/markdown

# **mkdocs2notion**

A command-line tool that converts a directory of Markdown documents—optionally structured with `mkdocs.yml`—into a fully-organized Notion workspace.

This utility mirrors the publishing behavior of **MkDocs**, but targets **Notion pages** instead of a static site.

All parsing and conversion logic is implemented natively in this repository, with an adapter layer that can use **Ultimate Notion** (if installed) or a future Notion SDK integration.

---

## **Features**

* 🗂 **Publish entire Markdown folders to Notion**
* 📄 **Accurate Markdown → Notion block conversion**
* 📚 **Optional mkdocs.yml navigation support**
* 🔗 **Maintains hierarchical structure and ordering**
* 🆔 **Local file-path ↔ page-ID mapping for updates**
* 🛠 **Dry-run mode for testing without touching Notion**
* ⚙️ **Adapter layer** to support different Notion clients
* ☑️ **Markdown task lists render as Notion to-dos**

---

## **Why This Exists**

Markdown is easy to write.
Notion is easy to share/control.

But getting a structured Markdown knowledge base into Notion—*and keeping it updated*—is hard.

`mkdocs2notion` solves that by:

* replicating MkDocs’ handling of directories, files, and nav trees,
* converting Markdown into rich Notion blocks,
* creating/updating pages while maintaining structure,
* allowing teams to turn entire docs folders into Notion workspaces.

---

## **Installation**

`mkdocs2notion` v0.2.0 is published on PyPI and GitHub.

Install from PyPI:

```bash
pip install mkdocs2notion
```

Or install the latest from GitHub:

```bash
pip install git+https://github.com/mahbam42/mkdocs2notion
```

---

## **Basic Usage**

### **Push a directory to Notion**

```bash
mkdocs2notion push docs/
```

### **With mkdocs.yml navigation**

```bash
mkdocs2notion push docs/ --mkdocs mkdocs.yml
```

### **Dry run (see what would happen)**

```bash
mkdocs2notion dry-run docs/
```

### **Validate docs without publishing**

```bash
mkdocs2notion validate docs/ --mkdocs mkdocs.yml
```

### **CLI options**

- `--mkdocs <path>`: Use mkdocs.yml navigation ordering without requiring MkDocs to be installed.
- `--parent <page_id>`: Override `NOTION_PARENT_PAGE_ID` for where new pages should live.
- `--fresh`: Ignore the cached page-ID map and rebuild it before pushing.
- `--strict`: Treat warnings as errors (push/dry-run/validate exit with status 1 when warnings are present).

---

## **Configuration**

### **Environment variables**

You will need a Notion API token:

```
NOTION_TOKEN=your-secret-token
```

Optional:

```
NOTION_PARENT_PAGE_ID=...   # where new pages should be created
```

---

## **How It Works**

`mkdocs2notion` processes content in stages:

### **1. Directory Loader**

* Walks the directory
* Reads Markdown files
* Extracts titles (frontmatter or H1)
* Generates metadata for each page

### **2. mkdocs.yml Navigation Loader** (optional)

* Reads `mkdocs.yml`
* Builds an ordered tree of sections/pages

### **3. Markdown Parser**

* Converts Markdown into internal block structures
* Converts those blocks into Notion-ready representations

### **4. Notion Adapter**

A thin abstraction around Notion operations (via Ultimate Notion or another SDK):

* create/update pages
* send block updates
* maintain parent-child relationships

You can swap the adapter without touching the logic.

---

## **Project Structure**

```
mkdocs2notion/
│
├── mkdocs2notion/
│   ├── markdown/
│   ├── loaders/
│   ├── notion/
│   ├── cli.py
│   └── runner.py
│
├── tests/
├── pyproject.toml
└── README.md
```

---

## **Contributing**

See **`agents.md`** for strict guidelines on:

* development workflow
* linting + typing
* testing 
* commit rules
* agent behavior

Contributions are welcome—but must follow these standards to maintain reliability.

---

## **License**

MIT License.

## **Release Notes**
| Version | Changes |
|----|----|
| v0.2.1 | Fixed Readme and Installation Instructions |
| v0.2.0 | Stable Release Version |
| v0.1.0 | Preliminary Alpha Version |
