summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index eb55090..c88fdcc 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -50,6 +50,11 @@
//! }
//! ```
+#[cfg(feature = "pandoc_ast_07")]
+pub extern crate pandoc_ast_07 as pandoc_ast;
+#[cfg(feature = "pandoc_ast_08")]
+pub extern crate pandoc_ast_08 as pandoc_ast;
+
use pandoc_ast::{Block, Inline, MutVisitor, Pandoc};
use std::env;
use std::ffi::OsString;