Bktero

Results 19 comments of Bktero

I have faced the same issue today with this code; ```rust fn create_random_vector(size: usize) -> Vec { let mut rng = rand::thread_rng(); (0..size).map(|_| rng.gen_range(0..100)).collect() } #[divan::bench(args = [ create_random_vector(100_000) ])]...

I have the same issue. I can cause some headache. If you have the -v option, you can see which file is used. However, there is no log telling that...

Hello I have stumbled on this issue too. My coworker added support for Mermaid in our project configuration. The graphs weren't rendered on my machine as `mdbook-mermaid` wasn't installed. It...

Should I post the diff here or create a PR? (It's really basic)

The PR is here https://github.com/rust-lang/mdBook/pull/2597

I haven't tried but maybe this issue is now fixed by https://github.com/rust-lang/mdBook/pull/2797

I have tried `"" | absURL` and it seems to work. `absUrl ""` does the same as may be more readable. You may want to try it on your side,...

After for weird behaviors with links when the site it served locally, I believe `relURL ""` in the best solution. From https://discourse.gohugo.io/t/use-case-for-relurl-and-absurl/16633 > using relURL in the templates is pretty...