Jos de Jong
Jos de Jong
Suppression of trailing spaces stripping worked before, but seems to be broken now. Running v0.9.7, WebStorm 9. See also #33
@vankop I think you will like the latest release of the jsoneditor, `v5.20.1`, which allows using it as a controlled component in a framework like React. There are two new...
Looking at the docs of the custom formatter, https://github.com/ericman314/UnitMath#custom-formatter , I have the feeling that the `formatter` option can be simpler, by removing the possibility to pass additional arguments to...
From the docs: > If the prefix or simplify options are set to 'auto' or 'always', the toString and format methods will try to simplify the unit before outputting. This...
Discovered during the discussion in #2617: in mathjs, `mod` is implemented the mathematical way, which differs a bit from the typical programmatical way: `math.mod(22, 0)` returns `22`. However, this behavior...
New issue originating from #925
Continuation from the discussion in #2047 (which became a bit off-topic) In #2047 two ideas where brought up by @gwhitney: 1. It would be nice to have the embedded docs...
Just floating an idea here: the `Unit.js` class is a powerful piece of functionality on it's own, separate from math.js. It could be interesting to think about splitting it from...
There are various options: - Add a new action menu entry "Copy path" - Add a button "Copy path" right from the path in the navigation menu - Create a...
Fixes #639 . I've changed `"Hello!"` to `"Hello " ++ name` and not `"Hello " ++ name ++ "!"` in order to keep the example as minimal as possible. I'm...