Veaceslav Grimalschi
Veaceslav Grimalschi
@auswuchs it parses "229.5/2pi" as "229.5/2*pi" and first it does "229.5/2" and then multiplies result with "pi". So finally formula evaluates as "(229.5 / 2) * pi).
Исправил, теперь в одну строку отображается
CommonMark also "unescapes" commas: https://spec.commonmark.org/dingus/?text=1%5C.%20Hello%5C%2C%20world!
Any progress here?
Snabbdom can not be faster then regular DOM because it uses regular DOM. It also does selector parsing, virtual DOM generation and comparison etc. So real DOM is faster. But...
Something like this
By "untrusted" I mean just that code can throw any kind of exception. Not secure isolation.
Well, there is two areas of errors. First is virtual dom and second is a real. First area error: ``` h('div, {}) // Stupid mistype, but can ruin app if...
You can successfully wrap with try-catch first type of errors and catch all errors before patch. But second area (real dom exceptions) are hard to catch because they are coming...
Because this is part of virtual dom. Wrong approach?