1 个不稳定版本
0.0.1 | 2019 年 8 月 28 日 |
---|
#28 在 #html-rendering
7KB
text2html
一个实验性项目。
工作中...
一个在 Rust 中将文本渲染为 HTML 的库。
用法
将以下内容添加到你的 Cargo.toml
[dependencies]
text2html = "0.0.1"
示例
pub struct Content <'b> {
pub c: &'b String,
}
impl <'b> Content <'b> {
pub fn new(s: &'b String) -> Self {
Content {
c: s,
}
}
}
impl <'b> Text for Content <'b> {
fn data_source(&mut self) -> String {
self.c.to_owned()
}
}
pub struct TextBuilder <'a> {
pub sc: &'a String,
}
impl <'a> TextBuilder <'a> {
pub fn new(s: &'a String) -> Self {
TextBuilder {
sc: s,
}
}
}
impl <'a> TextBuilder <'a> {
pub fn build(&mut self) -> Box<dyn Text + 'a> {
Box::new( Content::new(&self.sc) )
}
}
fn main() {
let text = "Hello world.".to_string();
let mut builder = TextBuilder::new( &text ).build();
HtmlRender::new().render(&mut builder);
}
依赖
~0.9–1.4MB
~22K SLoC