1 2 3 4 5 6 7 8 9 10 11 12 13
extern crate micromark; use micromark::micromark; #[test] fn bom() { assert_eq!(micromark("\u{FEFF}"), "", "should ignore just a bom"); assert_eq!( micromark("\u{FEFF}# hea\u{FEFF}ding"), "<h1>hea\u{FEFF}ding</h1>", "should ignore a bom" ); }