pub mod beautify_links;
pub mod front_matter;
pub mod heading_anchors;
#[cfg(feature = "linkify")]
pub mod linkify;
pub mod math;
pub mod smartquotes;
pub mod strikethrough;
#[cfg(feature = "syntect")]
pub mod syntect;
pub mod tables;
pub mod typographer;
use crate::MarkdownIt;
pub fn add(md: &mut MarkdownIt) {
strikethrough::add(md);
beautify_links::add(md);
#[cfg(feature = "linkify")]
linkify::add(md);
tables::add(md);
#[cfg(feature = "syntect")]
syntect::add(md);
typographer::add(md);
smartquotes::add(md);
#[cfg(feature = "katex")]
math::add(md);
}