diff options
| -rw-r--r-- | lume/src/blog/xesite-v4.mdx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lume/src/blog/xesite-v4.mdx b/lume/src/blog/xesite-v4.mdx index 4978138..f8675ff 100644 --- a/lume/src/blog/xesite-v4.mdx +++ b/lume/src/blog/xesite-v4.mdx @@ -66,7 +66,7 @@ pub fn blockquote(body: Markup) -> Markup { } ``` -This is all fine and dandy, but then the real trouble came in with passing this to lol*html. lol\_html doesn't have the concept of getting the children of a component (because this is designed to do *streaming* replacement of HTML elements), so in order to make this work in lol\_html I can't use that template function. I have to write it like this: +This is all fine and dandy, but then the real trouble came in with passing this to lol\_html. lol\_html doesn't have the concept of getting the children of a component (because this is designed to do *streaming* replacement of HTML elements), so in order to make this work in lol\_html I can't use that template function. I have to write it like this: ```rust use lol_html::{element, RewriteStrSettings}; |
