Skip to content
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

(java) Code not getting tokenized (and thus not highlighted) #4229

Open
Jurredr opened this issue Mar 20, 2025 · 2 comments
Open

(java) Code not getting tokenized (and thus not highlighted) #4229

Jurredr opened this issue Mar 20, 2025 · 2 comments
Labels
bug help welcome Could use help from community language

Comments

@Jurredr
Copy link

Jurredr commented Mar 20, 2025

Describe the issue

Which language seems to have the issue?
Java. It works perfectly fine for any other language we've tested with. Just Java seems to break for some reason, with multiple different code examples tested.

Are you using highlight or highlightAuto?
Highlighting it through hljs.highlightElement(codeElement); where codeElement is an HTML element of type code, and then rendering that HTML element to the DOM.

Sample Code to Reproduce

const codeElement = DomBuilder.getInstance().build({
  type: 'code',
  classNames: [
    ...(props.language !== undefined ? [ `language-${props.language}` ] : [ 'language-plaintext' ])
  ],
  innerHTML: "Some code string here"
});
hljs.highlightElement(codeElement);
Image

Expected behavior
The code is tokenized into spans and highlighted accordingly.

Additional context

This issue is occurring in the open source MynahUI repository for AWS, specifically in the SyntaxHighlighter component.

@Jurredr Jurredr added bug help welcome Could use help from community language labels Mar 20, 2025
@joshgoebel
Copy link
Member

  • Have you absolutely, for certain loaded/bundled the java grammar?
  • Are there any errors in the console?

@Jurredr
Copy link
Author

Jurredr commented Mar 25, 2025

  • I haven't specified any specific languages / grammars, but let me see if it it bundled
  • No errors in console

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug help welcome Could use help from community language
Projects
None yet
Development

No branches or pull requests

2 participants