Add simple to-html output and bump version (#1487)

This commit is contained in:
Jonathan Turner
2020-03-15 16:04:44 +13:00
committed by GitHub
parent b6363f3ce1
commit 2d078849cb
8 changed files with 145 additions and 4 deletions

View File

@ -87,6 +87,7 @@ pub(crate) mod table;
pub(crate) mod tags;
pub(crate) mod to_bson;
pub(crate) mod to_csv;
pub(crate) mod to_html;
pub(crate) mod to_json;
pub(crate) mod to_sqlite;
pub(crate) mod to_toml;
@ -191,6 +192,7 @@ pub(crate) use table::Table;
pub(crate) use tags::Tags;
pub(crate) use to_bson::ToBSON;
pub(crate) use to_csv::ToCSV;
pub(crate) use to_html::ToHTML;
pub(crate) use to_json::ToJSON;
pub(crate) use to_sqlite::ToDB;
pub(crate) use to_sqlite::ToSQLite;