Raimundo Saona
Raimundo Saona
I am sorry if this is out of the scope of this issue, but as far as I could understand, [`femtovg`](https://github.com/femtovg/femtovg) implements a few things that have been mentioned here...
Just passing by: Still the same error to this date on Windows. (sorry for not being more helpful :/)
https://github.com/saona-raimundo/preexplorer
Should a note in the README be added about how to add the doctype declaration? I am doing as follows. ```rust let mut w = EventWriter::new(file); w.write(XmlEvent::StartDocument { version: xml::common::XmlVersion::Version10,...
I can also recommend courses by https://open.hpi.de/ they are quite beginner-friendly and RDF is part of various courses.
I was thinking of something like these subsets of Html: - https://www.quora.com/What-are-the-top-10-most-commonly-used-HTML-tags - https://www.washington.edu/accesscomputing/webd2/student/unit2/common_tags.html - http://www.columbia.edu/~sss31/html/html-tags.html I do not know if there is any established "basic Html5 standard"(?)
Currently, text rendering [is implemented here](https://github.com/DioxusLabs/rink/blob/master/src/render.rs#L63). When rendering text, there is only access to a [`dioxus_core::VText
If I understand correctly, once the style of the text is retrieved, all one needs to do is to pass the modifiers to the [`tui::style::Style`](https://docs.rs/tui/0.16.0/tui/style/struct.Style.html) in the last parameter [of...
And the information of the tags come from [`VNode::Element(_)` match here](https://github.com/DioxusLabs/rink/blob/master/src/render.rs#L50), no? (is it present somewhere else?) >Broadly speaking, styling needs to be implemented using cascades (... as in CSS)....
Sorry if this is out of nowhere, but would it not be a more productive approach to implement the traits in `petgraph` to get access to all their algorithms implemented...