Metadata-Version: 2.4
Name: mkdocs-editor-notes
Version: 0.1.0
Summary: Provides a page of editor's notes gathered from annotated document files.
Project-URL: homepage, https://github.com/dusktreader/mkdocs-editor-notes
Project-URL: documentation, https://dusktreader.github.io/mkdocs-editor-notes/
Project-URL: source, https://github.com/dusktreader/mkdocs-editor-notes
Project-URL: changelog, https://github.com/dusktreader/mkdocs-editor-notes/blob/main/CHANGELOG.md
Project-URL: issues, https://github.com/dusktreader/mkdocs-editor-notes/issues
Author-email: Tucker Beck <tucker.beck@gmail.com>
License: MIT
License-File: LICENSE.md
Keywords: annotations,documentation,editor-notes,mkdocs,plugin
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: MkDocs
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Documentation
Requires-Python: >=3.12,~=3.14
Requires-Dist: markdown>=3.4.0
Requires-Dist: mkdocs>=1.5.0
Requires-Dist: snick>=3.0.0
Description-Content-Type: text/markdown

[![Latest Version](https://img.shields.io/pypi/v/mkdocs-editor-notes?label=pypi-version&logo=python&style=plastic)](https://pypi.org/project/mkdocs-editor-notes/)
[![Python Versions](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Fdusktreader%2Fmkdocs-editor-notes%2Fmain%2Fpyproject.toml&style=plastic&logo=python&label=python-versions)](https://www.python.org/)
[![Build Status](https://github.com/dusktreader/mkdocs-editor-notes/actions/workflows/main.yml/badge.svg)](https://github.com/dusktreader/mkdocs-editor-notes/actions/workflows/main.yml)
[![Documentation Status](https://github.com/dusktreader/mkdocs-editor-notes/actions/workflows/docs.yml/badge.svg)](https://dusktreader.github.io/mkdocs-editor-notes/)

# mkdocs-editor-notes

_Provides a page of editor's notes gathered from annotated document files._


## Overview

mkdocs-editor-notes is a MkDocs plugin that allows you to embed editorial notes directly in your markdown documentation
files. These notes can be used to track todos, questions, improvements, and research items without cluttering the main
documentation.

All notes are automatically collected and displayed on a dedicated aggregator page, making it easy to see all editorial
work at a glance.


## Key Features

- **Footnote-like Syntax**: Familiar syntax similar to markdown footnotes
- **Multiple Note Types**: Supports builtin types and custom types as well.
- **Customizable Emojis**: Note types can be configured with emojis
- **Aggregator Page**: Automatic collection of all notes in one place
- **Source Linking**: Click to navigate back to note locations
- **Configurable Visibility**: Show or hide note markers in rendered pages


## Quick Example

```markdown

This sentence needs more work[^todo:polish].

The current approach might not scale[^ponder:performance].

Research needed here.[^research:alternatives]


[^todo:polish]: Add error handling and tests
[^ponder:performance]: Should we benchmark with larger datasets?
[^research:alternatives]: Look into alternative libraries
```

All these notes will appear on the `/editor-notes/` page, grouped by type, with links back to their source paragraphs.


## Super-quick Start

Requires: Python 3.12 to 3.14

Install through pip:

```bash
pip install mkdocs-editor-notes
```

Add to your `mkdocs.yml`:

```yaml
plugins:
  - editor-notes
```


## Running the Example

This repository includes a complete example MkDocs site in the `example/` directory that demonstrates the plugin's
features. You can run it locally to see the plugin in action.

### Build the example site:

```bash
make example/build
```

### Serve the example site locally:

```bash
make example/serve
```

The example site will be available at `http://localhost:10001`. Navigate to the `/editor-notes/` page to see all the
collected editorial notes from the example documentation.


## Documentation

The complete documentation can be found at the [mkdocs-editor-notes home
page](https://dusktreader.github.io/mkdocs-editor-notes)
