gazetta_render_ext/
lib.rs

1//  Copyright (C) 2015 Steven Allen
2//
3//  This file is part of gazetta.
4//
5//  This program is free software: you can redistribute it and/or modify it under the terms of the
6//  GNU General Public License as published by the Free Software Foundation version 3 of the
7//  License.
8//
9//  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10//  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
11//  the GNU General Public License for more details.
12//
13//  You should have received a copy of the GNU General Public License along with this program.  If
14//  not, see <http://www.gnu.org/licenses/>.
15//
16
17mod content;
18mod date;
19mod head;
20#[cfg(feature = "syntax-highlighting")]
21mod highlight;
22mod markdown;
23
24pub use crate::content::Content;
25pub use crate::date::Date;
26pub use crate::head::Head;
27pub use crate::markdown::Markdown;