Yuri Sulyma
Yuri Sulyma
I am importing https://esm.sh/liqvid and https://cdn.esm.sh/v68/@liqvid/katex. The first correctly imports the latest version `[email protected]`. However, the second is importing `[email protected]` as a dependency, which causes code to break since it's...
### Minimal working example ```Javascript // index.ts import * as EventEmitter from "events"; console.log(EventEmitter); // package.json { "name": "mwe", "version": "1.0.0", "description": "Minimal working example for \"events\" bug in awesome-typescript-loader...
If `RangeTouch.setup` is called on a document that has no range inputs, it will return null and not set up the watcher for future inputs. This fixes that.
## Introduction The [``](https://html.spec.whatwg.org/multipage/media.html#the-video-element) element was one of the most revolutionary new features of HTML5, and a key part of "Web 2.0". Today, the web platform has become powerful enough...
`docusaurus-preset-shiki-twoslash` is incompatible with Docusaurus's [live code blocks](https://docusaurus.io/docs/markdown-features/code-blocks#interactive-code-editor), since it gobbles up all of the code blocks. I only want Shiki/Twoslash on some of my code blocks, while others I...
This PR adds documentation for the `data` command implemented in https://github.com/mathjax/MathJax-src/pull/791.
Currently, Liqvid doesn't work in React's Strict Mode. This is mainly due to double-renders (https://github.com/facebook/react/issues/12856, https://github.com/facebook/react/issues/20835) along with how we set up keyboard shortcuts.
Does Math3d have—or would it be possible to create—an API for embedding Math3d, similar to Desmos's API https://www.desmos.com/api/v1.6/docs/index.html ?(Not in an iframe) Motivation: I'm making interactive videos with embedded graphs,...
**Steps to reproduce** Create two files in the same directory, `a.styl` and `text.styl`: ``` // a.styl @import 'nib' // text.styl * color red ``` On the command line, enter ```...