Jens Reimann

Results 241 issues of Jens Reimann

It is possible to set the value of an element using ``. This seems to be of the type `Cow`, which makes dealing with it a bit cumbersome. On the...

bug

**Problem** **Steps To Reproduce** Steps to reproduce the behavior: ```rust #[test] fn test_to_html_to_children_comp_compiles() { use crate::prelude::*; struct Foo; impl ToHtml for Foo { fn to_html(&self) -> Html { html!() }...

bug

While it is possible to assign `&str` and `String` to a property of type `Html`, that fails for `Option`. I think this should be possible too. **Yew:** 0.21

bug

I was wondering if it would make sense to expand the documentation at bit. I have the feeling that it slowly outgrows the "homepage" size. Some projects in the Rust...

discussion

Coming out of a discussion on #670 … it might make more sense to support workspace projects and the ability to run `trunk build -p frontend`, which would: * Lookup...

enhancement
help wanted

I was considering a way to ensure that a trunk version actually supports the configuration options of a project. An easy approach to this could be to have a `required_version`...

help wanted
discussion
needs design

Currently blocked by seanmonstar/reqwest#2039

blocked

I believe there is a race condition when recursively copying: https://github.com/webdesus/fs_extra/blob/1754296075e7cc4a25feaa876a3f4b9daccc0b98/src/dir.rs#L604-L609 `create_all` will fail when the directory already exists. Having two threads copying files to the same directory, this may...

Align behavior of dir::create and dir::create_all to not report an existing directory as error. Fixing race conditions when running multiple copy operations in parallel.

# Bug Report ## Environment Zola version: 0.17.2 ## Expected Behavior According to the Tera docs, it should be possible to invoke a macro in the same file using the...