notabene 0.2.0

A fast linter for changelogs in Keep a Changelog format
Documentation
1
2
3
4
5
6
7
8
//! A simplified Markdown document AST.
//!
//! The AST is a sequence of [`Block`] elements, associated with spans in the original document.
mod block;
mod parser;

pub(crate) use block::*;
pub(crate) use parser::Parser;