Add svg and mathml support

This commit is contained in:
Joscha 2024-11-26 23:42:10 +01:00
parent cc3f85e6e1
commit 43b3236d3b
6 changed files with 150 additions and 8 deletions

View file

@ -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() {