umd 0.1.0

Universal Markdown - A post-Markdown superset with Bootstrap 5 integration and extensible syntax
Documentation
use comrak::{markdown_to_html, Options};

fn main() {
    let mut options = Options::default();
    
    // GFM table
    let gfm_table = "| Header1 | Header2 | Header3 |\n\
                     |---------|---------|--------|\n\
                     | Cell1   | Cell2   | Cell3   |";
    
    println!("=== comrakのデフォルト出力 ===");
    let html = markdown_to_html(gfm_table, &options);
    println!("{}", html);
    
    println!("\n=== GFM拡張有効 ===");
    options.extension.table = true;
    let html = markdown_to_html(gfm_table, &options);
    println!("{}", html);
}