David McArthur
David McArthur
From my invetigation (a while ago), this bug was introduced in v8.5.2. Sorry I don't recall the specifics. I've been instructing my users to roll back to `[email protected]` before installing...
Hi there, I have the opposite problem! I'm looking to turn on the "find in page" functionality but I can't see where to do it. I'm on MacOS and the...
Sure, given the following example: ```ts import { unified } from 'unified'; import remarkParse from 'remark-parse'; import remarkStringify from 'remark-stringify'; import { toc } from 'mdast-util-toc'; const markdown = `...
Oh, d'oh.. just reading back through my question and I came up with the (much more straightforward!) solution: ```ts function remarkHeadingId() { return (tree: Root) => { visit(tree, 'heading', (node)...
Hi there, The difference is `lastChild` is an `mdast` node: https://github.com/imcuttle/remark-heading-id/blob/5f6272e54a0d7182a9b8f06dfea7b71e89b31d44/index.js#L14-L15 Whereas I propose using `hChildren`: ```ts hChildren: [ { type: 'text', value: text.value.slice(0, match.index), }, ] ``` If you...
We have found a fix for this by prepending: ````md ```{python echo=FALSE} import sklearn sklearn.set_config(display="text") ``` ```` I guess ideally, this should be automatically configured when using knitr.
Hello, just came across this issue too, using the `workflow_run` trigger. The `static-checking` fix doesn't help, the error then becomes: ``` Static checking cannot be performed without a `file-url` argument....
@EndBug Thanks for your help.. I think I'm tying to use this package in a way that wasn't intended.. I just want to run actions if I have updated the...
Another example: ```bash ./tex2svg --overflow linebreak --width 530 '\begin{array}{rrr} e=\begin{pmatrix}1 & 2 & 3\\ 1 & 2 &3\end{pmatrix} & (1\;2\;3)=\begin{pmatrix}1 & 2 & 3\\ 2 & 3 & 1\end{pmatrix} &...
That's great you already have a fix! I can wait for its release, I have a quick workaround for now: ```ts const node = doc.convert(mml, { // https://github.com/mathjax/MathJax/issues/3434 containerWidth: mml.includes('\\begin{array}')...