Tv
Tv
It seems this can be done with a plugin just fine: https://crates.io/crates/mdbook-admonish
I would love to use `src = "."` and not have unnecessary things like my build script or .gitignore copied into the output directory. This repository contains very little else...
Conversation at https://github.com/BuilderIO/qwik/discussions/1567 seemed promising, but the linked-to example no longer works: https://github.com/wtho/deno-qwik/issues/3
It seems to be about importing `node:http2`, which Deno might not support at this time: https://github.com/denoland/deno/blob/main/ext/node/polyfills/README.md The only use seems pretty trivial and optional: https://github.com/BuilderIO/qwik/blob/5eb7e33759188e725b212213de134e296756322a/packages/qwik-city/middleware/node/http.ts#L15 but I don't do NodeJS...
> This gets me reasonably close to that example: > > ``` > ... > // header row > grid( > columns: (1fr, 1fr, 1fr), > ..values.at(1).map(header), > ), >...
I would **strongly** encourage to be safe by default. Have `--unsafe` for people who want that, have default mode that does the right thing for 90% of people, while being...
If you parse paths from *.typst via [`PathBuf::components`](https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.components) and ensure no component is `Component::RootDir`, `..`, or starts with `.`, and then [`join`](https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.join) that to the directory containing the the *.typ...
Valid yes, but also pretty pointless. Disallowing .. is simple & safe, that's why I like it. Then again, I'm more used to Go's path handling, it does lexical normalization...
https://github.com/danreeves/path-clean looks promising.
Yeah typst seems to think decimal numbers in prose are sentence ending? `$3.141$` and `3\.141` both behave more reasonably.