-
Notifications
You must be signed in to change notification settings - Fork 99
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
bug: incorrect language tag for JavaScript #106
Comments
I can take this issue up if the maintainers approve. |
just a quick note here that the majority of these are in |
For those in contributor docs, we'll fix in the p5.js repo. |
Hi, I saw this was inactive for some time, so I made a PR. I also noticed that sometimes 4 backticks were used instead of 3 to define code blocks. I fixed both errors, hope it helps 🙈 |
In many of the
.mdx
files containing the documentation, the JavaScript code snippets have been marked with the language tagJavaScript
as follows:This tag is incorrect and should be replaced by
javascript
. These incorrect language tags lead the build byShiki
to not be rendered as JS, but rather plaintext:A simple global search and replacing
[triple backticks]JavaScript
with[triple backticks]javascript
should fix the same.The text was updated successfully, but these errors were encountered: