oak-notedown 0.0.0

High-performance incremental Markdown parser for the oak ecosystem with flexible configuration, optimized for documentation and content creation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![feature(new_range_api)]
#![doc = include_str!("readme.md")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]

pub mod language;

pub mod kind;
pub mod lexer;

pub use crate::{kind::NoteSyntaxKind, language::NotedownLanguage, lexer::NotedownLexer};