Add svg and mathml support
This commit is contained in:
parent
cc3f85e6e1
commit
43b3236d3b
6 changed files with 150 additions and 8 deletions
|
|
@ -5,14 +5,16 @@
|
|||
|
||||
mod check;
|
||||
mod element;
|
||||
pub mod elements;
|
||||
pub mod html;
|
||||
pub mod mathml;
|
||||
mod render;
|
||||
pub mod svg;
|
||||
|
||||
pub use self::{element::*, elements::*, render::*};
|
||||
pub use self::{element::*, render::*};
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use crate::{elements::*, render::Render, Content, Element};
|
||||
use crate::{html::*, Content, Element, Render};
|
||||
|
||||
#[test]
|
||||
fn simple_website() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue