2023-04-10 13:45:36 -04:00
|
|
|
#![feature(round_char_boundary)]
|
2023-04-10 14:28:40 -04:00
|
|
|
#![feature(exit_status_error)]
|
|
|
|
use compare::emacs_parse_org_document;
|
2023-04-10 13:45:36 -04:00
|
|
|
mod compare;
|
|
|
|
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
2023-04-10 14:28:40 -04:00
|
|
|
emacs_parse_org_document("./org_mode_samples/footnote_definition/simple.org")?;
|
2023-04-10 13:45:36 -04:00
|
|
|
Ok(())
|
|
|
|
}
|