quasar-ui-qmarkdown
quasar-ui-qmarkdown copied to clipboard
Code Syntax Highlighting only Works for JS language
Describe the bug Code Blocks are only show syntax highlighting when the language is javascript/js
To Reproduce Steps to reproduce the behavior:
- Go to Documentation Example Editor
- Input:
def factorial(n):
"""Calculate the factorial of a number using recursion."""
if n == 0:
return 1
else:
return n * factorial(n - 1)
Expected behavior Syntax highlighting for python code
Screenshots
I tried around 10 languages
Desktop:
- Ubuntu 22.04
- Browser Chrome
- Version 127.0.6533.72