marcus 0.1.2

An experimental Markdown parser written in Rust
Documentation
1
2
3
4
5
6
7
use crate::helpers::re;
use regex::Captures;

// Parse: Comments
pub fn default(html: &mut String) {
  re::parse(html, re::from(re::COMMENTS), | _: Captures | String::new());
}