summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJonas Bushart <jonas@bushart.org>2019-01-20 18:10:23 +0100
committerJonas Bushart <jonas@bushart.org>2019-08-26 00:36:03 +0200
commit66b913fa54ca0ce700506125867c3ab117f7667f (patch)
tree2f8efd8f1c82faace06271949cd8b68ef90912dc /src/lib.rs
parent917e480a673d1ab03218702d0e9e726131e48799 (diff)
Integrate the new HTML printing with Evcxr
* Add optional feature for Evcxr integration * Implement trait for everything which can be converted into a Tableslice. The trait prints the Tableslice in plain-text and HTML format in a Evcxr compatible manner.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1e02055..9ccb008 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -24,6 +24,9 @@ mod utils;
#[cfg(feature = "csv")]
pub mod csv;
+#[cfg(feature = "evcxr")]
+pub mod evcxr;
+
pub use row::Row;
pub use cell::Cell;
use format::{TableFormat, LinePosition, consts};