We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For code blocks, it kinda stinks you don't get the code highlighting until the full code block comes in, e.g. a response might look like this:
This is a code sample from me, an AI assistant: ```javascript var x = 0; // a cod
Only once you get everything between the code fences ``` will it turn into an editor preview.
There's probably a way we can eagerly begin styling a code block when we see the first set of code fences by changing this regex.
Note how chatGPT triggers a formatting a code response at the first sign of a code block:
It does now, however, do this for inline code. It waits until the final backtick
The text was updated successfully, but these errors were encountered:
jimniels
Successfully merging a pull request may close this issue.
For code blocks, it kinda stinks you don't get the code highlighting until the full code block comes in, e.g. a response might look like this:
Only once you get everything between the code fences ``` will it turn into an editor preview.
There's probably a way we can eagerly begin styling a code block when we see the first set of code fences by changing this regex.
Note how chatGPT triggers a formatting a code response at the first sign of a code block:
It does now, however, do this for inline code. It waits until the final backtick
The text was updated successfully, but these errors were encountered: