Skip to main content

ClearNotation: a docs-first, formally specified markup language

Project description

ClearNotation

A docs-first markup language with a formally specified grammar, fail-closed parsing, and typed extensibility. Not Markdown-compatible. That's the point.

Why

Markdown has no formal grammar, ambiguous parse rules, 41 incompatible flavors, and uses inline HTML as an escape hatch. ClearNotation is a clean-sheet design that trades Markdown compatibility for correctness, predictability, and a real spec you can implement against.

Quick look

::meta{
title = "Example Document"
}

# Getting started

ClearNotation uses +{strong text}, *{emphasized text}, `code spans`,
[links -> https://example.com], and ^{inline footnotes that render as endnotes}.

::callout[kind="tip", title="One syntax per concept"]{
No `*` vs `**` ambiguity. No flavor differences. No inline HTML.
}

::table[header=true, align=["left", "right"]]{
Feature | Syntax
Strong  | +{text}
Emphasis | *{text}
Link    | [label -> url]
Note    | ^{text}
}

Visual Editor

ClearNotation ships a browser-based split-pane editor. Visual editing on the left (Notion-style), ClearNotation source on the right, live bidirectional sync between them.

Features: templates (PRD, design doc, meeting notes), dark mode, keyboard shortcuts, syntax cheat sheet, Markdown paste auto-conversion, File System Access API for open/save, localStorage autosave, HTML export, WCAG 2.1 AA accessibility.

Try it: Run cd editor && pnpm dev or visit the deployed GitHub Pages site after tagging a release.

Interactive playground: /playground.html lets you type ClearNotation and see the tree-sitter parse tree update live.

Install

Python toolchain (CLI, LSP, renderer)

pip install clearnotation              # CLI: cln build, cln check, cln ast, cln fmt, cln init, cln watch
pip install clearnotation[lsp]         # LSP server for editor integration
pip install clearnotation[math]        # LaTeX math rendering via latex2mathml
pip install clearnotation[highlight]   # Syntax highlighting via Pygments
pip install clearnotation[watch]       # File watcher for cln watch
pip install clearnotation[convert]     # Markdown-to-CLN converter via mistune

Editor (browser)

git clone https://github.com/rjmitchell/clear-notation.git
cd clear-notation
pnpm install        # install all workspace packages
cd editor && pnpm dev   # start the visual editor at localhost:5173

Usage

cln build document.cln          # compile .cln to HTML
cln build docs/                 # compile all .cln files in a directory
cln check document.cln          # validate without rendering (for CI)
cln ast document.cln            # dump normalized AST as JSON
cln fmt document.cln            # format (stdout)
cln fmt --write document.cln    # format in place
cln fmt --check document.cln    # check formatting (exit 1 if changes needed)
cln init                        # scaffold a new project (clearnotation.toml + docs/index.cln)
cln init my-project             # scaffold in a specific directory
cln watch docs/                 # watch for changes, rebuild, serve at localhost:8000

# Document platform tools
cln convert docs.md             # convert Markdown to CLN
cln convert docs/ -o out/       # convert directory of Markdown files
cln index docs/                 # index .cln files into SQLite (.cln-index.db)
cln query docs/ --stats         # corpus stats: directive histogram, broken references
cln query docs/ --directive callout  # find docs using a specific directive
cln query docs/ --title "API"   # find docs by title (substring match)
cln lint docs/ --schema schema.toml  # validate corpus against a TOML schema

What's in the box

Language and toolchain

  • Normative EBNF grammar (clearnotation-v0.1.ebnf)
  • Reference parser, validator, normalizer, and HTML renderer in Python
  • 57 conformance fixtures with a manifest-driven test harness and AST snapshot assertions
  • Default stylesheet (clearnotation.css) with light/dark mode, callouts, tables, footnotes, TOC
  • Formatter (cln fmt) with roundtrip-correct formatting
  • Multi-error diagnostics for the validator (reports all block-level errors, not just the first)
  • LaTeX math rendering via latex2mathml (optional, ::math{...} blocks)
  • Syntax highlighting via Pygments for rendered code blocks (optional)

Browser editor

  • Visual editor (BlockNote/React) with live CLN source pane (CodeMirror)
  • Bidirectional sync with generation counters, 300ms debounce, error recovery
  • Templates, dark mode, keyboard shortcuts, cheat sheet, Markdown paste conversion
  • File operations (File System Access API, download fallback, localStorage autosave)
  • Tree-sitter WASM playground at /playground.html

Developer tooling

  • Tree-sitter grammar for syntax highlighting and incremental parsing
  • JS normalizer and HTML renderer (clearnotation-js/) for browser-side HTML export
  • VS Code extension with LSP diagnostics (in vscode-clearnotation/)
  • GitHub Actions CI/CD (TypeScript check, Vitest, Python tests, fixture harness, GitHub Pages deploy)

Architecture

pnpm workspace (repo root)
├── clearnotation_reference/   Python: parser, validator, normalizer, renderer, CLI, LSP
├── editor/                    Browser editor: React + BlockNote + CodeMirror + Vite
│   └── src/
│       ├── parser/            Tree-sitter WASM parser (Web Worker)
│       ├── schema/            BlockNote block/inline specs from registry
│       ├── converter/         CST → BlockNote document model
│       ├── serializer/        BlockNote → ClearNotation source text
│       └── components/        React UI (SplitPane, Toolbar, SourcePane, CheatSheet, etc.)
├── clearnotation-js/          JS normalizer + HTML renderer (browser-side HTML export)
├── tree-sitter-clearnotation/ Tree-sitter grammar + WASM build
├── vscode-clearnotation/      VS Code extension
└── fixtures/                  Conformance test fixtures + escaping matrix

Key differences from Markdown

Concept Markdown ClearNotation
Bold **text** +{text}
Italic *text* *{text}
Link [label](url) [label -> url]
Footnote [^ref] + definition ^{inline note text}
Table pipe tables ::table[header=true]{ ... }
Callout blockquote hacks ::callout[kind="warning"]{ ... }
Image ![alt](src) ::figure[src="path"]{ caption }
Code fence language optional language required
Inline HTML allowed always escaped

Design principles

  • One canonical syntax per concept
  • Formally defined, trivially parsable grammar
  • Fail-closed: unknown directives, attributes, and refs are errors, not silent passthrough
  • Extensions declared in clearnotation.toml, never in documents
  • No inline HTML, no executable hooks, no Turing completeness
  • Readable raw source

Running the test suite

# Python tests (128 tests)
python3 -m unittest discover -s tests -v

# Conformance fixture harness (57 cases)
python3 -m clearnotation_harness --manifest fixtures/manifest.toml \
  --adapter clearnotation_reference.adapter:create_adapter

# Editor tests (315 tests)
cd editor && pnpm test

# JS normalizer/renderer tests (86 tests)
cd clearnotation-js && pnpm test

Spec documents

  • clearnotation-v0.1.ebnf — normative grammar
  • clearnotation-v0.1-syntax.md — syntax decisions
  • clearnotation-v0.1-config.md — config contract
  • clearnotation-v0.1-ast-conformance.md — AST model and conformance
  • clearnotation-v0.1-examples.md — conformance corpus

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clearnotation-0.9.2.tar.gz (67.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

clearnotation-0.9.2-py3-none-any.whl (58.9 kB view details)

Uploaded Python 3

File details

Details for the file clearnotation-0.9.2.tar.gz.

File metadata

  • Download URL: clearnotation-0.9.2.tar.gz
  • Upload date:
  • Size: 67.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for clearnotation-0.9.2.tar.gz
Algorithm Hash digest
SHA256 8172c6e0c3698f6a0dc40a4be5fcd66a5fb4e38b9f6518c0a4297c2b8886bf8d
MD5 16785d2e62d541ae622c03e99dfdb6ea
BLAKE2b-256 84a376d680ac682c476c4463a263a929f3afa44d97102ac656d3e3e231c628a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for clearnotation-0.9.2.tar.gz:

Publisher: publish-pypi.yml on rjmitchell/clear-notation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clearnotation-0.9.2-py3-none-any.whl.

File metadata

  • Download URL: clearnotation-0.9.2-py3-none-any.whl
  • Upload date:
  • Size: 58.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for clearnotation-0.9.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7a89a6f64c762542a17a7fae9ca57ad17ce0808e44d0c21e9f8583d6c5381305
MD5 f75d21157bd992a5a066e141b53f21b5
BLAKE2b-256 3d352f4a156295408c5d81f6dad2140876842c2384b05428db57db418f2605ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for clearnotation-0.9.2-py3-none-any.whl:

Publisher: publish-pypi.yml on rjmitchell/clear-notation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page