Shashwat Ganesh
Shashwat Ganesh
It is incredibly amusing: ``` | Syntax | Description | | --- | ----------- | | $\vec{a}$ | Title | | Paragraph | Text | ```  The html generated...
Well, I found why this happening: the `katex` crate renders `$\vec{a}$` as: ```html a ``` Each **newline/linebreak** in the `` tag is interpreted by the markdown parser as a new...
Nevermind, `katex-rs` and `libquickjs` are perfectly alright. It is `katex` (JS library not Rust crate) that outputs the newlines in the `path` tag: [demo](https://runkit.com/kknives/katex-html).
The newlines inside the html tag are generally fine, `\vec{a}` renders fine outside of the table. It is just that the markdown parser (`pulldown-cmark`) used by `mdBook` makes them into...
@BratishkaErik `getconf GNU_LIBC_VERSION` does indeed work with nix shells: ``` $ getconf GNU_LIBC_VERSION glibc 2.35 # host glibc $ nix develop $ getconf GNU_LIBC_VERSION glibc 2.37 # nix glibc ```