#![no_std]//! `linemd` is a simple markdown parsing library.
externcrate alloc;usealloc::{string::String,vec::Vec};/// Parser types used to parse markdown.
pubmodparser;#[cfg(test)]modtests;/// HTML rendering of tokens.
#[cfg(feature ="html")]pubmodhtml;/// SVG rendering of tokens.
#[cfg(feature ="svg")]pubmodsvg;#[doc(inline)]pubuseparser::Parser;#[cfg(feature ="svg")]#[doc(inline)]pubusesvg::{render_as_svg, Config as SvgConfig, ViewportDimensions as SvgViewportDimensions};#[cfg(feature ="html")]#[doc(inline)]pubusehtml::render_as_html;