-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow alternate editor components: Monaco editor, ACE #730
Comments
👍🏼 on removing the current codemirror editor and just using vanilla codemirror and yes that would be a good point at which to make the editor optional, and allow for others... @kno10 I'm curious on your use case, is the desired end state to drop thebe "as-is" into a site with reveal.js and for it to work. Or are you already writing custom javascript around reveal.js in the way you use that currently? |
Runnable code examples on lecture slides. Currently using Decker, which is reveal.js based, but includes extensions to, e.g., record a lecture, produce closed captions, etc. My customization currently is limited to the widgets, I don't want "run all" for example, and I prefer to have them in the bottom right. Reveal.js generates CSS for the slide such as the following attached to the slides: |
Apparently @codemirror/view 6.18.0 added some code to detect when the view component is scaled. |
i've been looking at thebe as a way to start testing code execution with assistive technologies. i have representations of rendered html notebooks that work really well with screen reader technologies. unfortunately, codemirror 5 has is not perceivable or operable by assistive technologies, the transition to 6 supposedly fixed this. regardless, the complexity of an editor framework makes it hard to test assistive technology experiences. i'm hoping to find a way to just use unstyled |
Context
The current editor component codemirror from jupyter, has issues with CSS transforms.
CSS transforms is used by reveal.js to zoom slides from "design size" to "screen size".
This causes codemirror component to be quite unusable within reveal.js slides, as the visible cursor, line indicator and similar can be complely off.
Proposal
Tasks and updates
No response
The text was updated successfully, but these errors were encountered: