Alexander Kachkaev

Results 463 comments of Alexander Kachkaev

If we want our transformation to be revertible (i.e. `original == stringify(parse(original))`), then representing tuples in some special form would be a requirement. Otherwise, just an array will probably work....

Let's stick with converting `(1,2)` to `[1,2]` for now. Later on, we'll be able to enhance the `parse()` function by adding the second optional argument. It will either contain some...

Thanks for digging these out Jo. I'll add the above cases to tests during the next litvis dev session.

Partially applied functions are serialized to `""` (JSON strings).

👋 @mcnuttandrew you can export a litvis document as an HTML file by right-clicking on the preview. As of making a proper online preview with editing and live updates, this...

Hmmm I did not know about [shadowing in Elm](https://elm-lang.org/0.19.0/shadowing). I'm linting against this rule in JS/TS, but because the code in those languages is split into smaller modules, shadowing is...

@folkertdev we are currently executing Elm code with `run-elm`, which returns us serialized data rather than executable JS functions. I guess that `elm-static-html-lib` expects the latter, but feel free to...

Hi Jo! Thanks for producing a helpful example. I guess the problem is upstream, so opened https://github.com/shd101wyy/vscode-markdown-preview-enhanced/issues/414