docs: fix some broken links

This commit is contained in:
PoiScript 2019-10-27 14:29:21 +08:00
parent 2b8d2590ff
commit fffadac04d
3 changed files with 18 additions and 14 deletions

View file

@ -1,9 +1,11 @@
//! Export `Org` struct to various formats.
pub mod html;
pub mod org;
mod html;
mod org;
pub use html::{DefaultHtmlHandler, Escape as HtmlEscape, HtmlHandler};
#[cfg(feature = "syntect")]
pub use html::SyntectHtmlHandler;
pub use org::{DefaultOrgHandler, OrgHandler};
use std::io::{Error, Write};