feat: CodeMirror TeX editor and split sandbox layout - #6
Merged
Conversation
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replaces the sandbox's plain
<textarea>with CodeMirror 6 (stexstream mode → real LaTeX highlighting, line numbers, ⌘/Ctrl+Enter to render), and turns/sandboxinto a full-height split workspace: editor left, render right, each scrolling independently, plus a Hide editor toggle that gives the render the full width.CodeMirror touches the DOM as it loads, and this site is a static export, so the editor is split in two:
tex-editor.tsxis the SSR-safe entry (dynamic(..., { ssr: false })), andtex-editor-client.tsxholds the actual widget and language mode.The example pages' existing "Edit source" textarea uses the same component (fixed
h-96there — those pages stay prose-width);CodeBlock, Render/Reset,Open in sandbox, the example<select>,#tex=deep links and the SEO/JSON-LD block are unchanged.Layoutnow widensmaintomax-w-7xland makes it a flex column on/sandboxonly, so the workspace can fill the viewport instead of the reading measure everything else uses.Deps pinned exactly:
@uiw/react-codemirror@4.25.11,@codemirror/legacy-modes@6.5.3,@codemirror/language@6.12.4.Verified in the browser: highlighting, example load + render, the toggle, and the example page's inline editor. Tests and the full static export pass.
Based on
chore/bump-latex2js-4.4.0(#5), so this diff includes that bump until it merges.Link to Devin session: https://app.devin.ai/sessions/e51e8ecb94d241bd8d89e65e642c3e43
Requested by: @pyramation