Dave Thomas
Dave Thomas
This have been working without issue for months. Then, over the weekend, I set up a fresh Linux box. Now, when I save an Elixir file, I get ``` replace-regexp-in-string:...
This is more a request for review than a pull request. I needed to be able to change text as part of the timeline (think of a counter that gets...
# Bug report Although `amove()` works fine when setting up text, it doesn't seem to be an animatable property. ## Fiddle https://codepen.io/pragdave/pen/bGEgVpd ## Explanation I tried just adding it to...
`tspan.newLine()` does two things 1. It sets dy to the line height, and dx to the left margin 2. It sets the `newLined` flag When a text element is rebuilt,...
Here's that change I mentioned. I updated the tests, and they all pass. I also tried it on my code based, and it looks good. There's one failing test, but...
wdio doesn't work with more recent nodes, so I replaced it with playwright. At the same time, I switched to vite, as it means I could use the same server...
### ✅ Checklist - [X] I am using the **latest version** ### 🔎 Description #### Concise Description The following input: ~~~ markdown --- title: Test --- $\sqrt{x}$ ~~~ Generates the...
Given a simple grammar: ~~~ ohm Myopic { Program = ExpressionList ExpressionList = Expression* Expression = BlockExpression | number BlockExpression = "block" "{" ExpressionList "}" number = digit+ } ~~~...
The idea is that it cleans up diagrams by removing all the `_` and `__` space matchers (and any other rules that start with _). Would you be interested in...
When using svgdom with TypeScript (ts-jest), it fails in module resolution, because `main` points to a `.cjs` file. If I change it to reference `main-module.js` everything works. As the likely...