We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa80d0b commit 9aa4e73Copy full SHA for 9aa4e73
javascripts/discourse/api-initializers/theme-initializer.gjs
@@ -655,6 +655,28 @@ function juliaRepl(hljs) {
655
return {
656
name: "Julia REPL",
657
contains: [
658
+ {
659
+ className: "meta.prompt",
660
+ begin: /^julia>(?=\s+@?code_llvm\b)/,
661
+ relevance: 15,
662
+ starts: {
663
+ end: /^(?=julia>)/,
664
+ returnBegin: true,
665
+ contains: [
666
667
+ // The Julia command line itself
668
+ begin: /\s+@?code_llvm/,
669
+ end: /^(?![ ]{6})/,
670
+ subLanguage: "julia",
671
+ },
672
673
+ // The LLVM IR output that follows
674
675
+ subLanguage: "llvm",
676
677
+ ],
678
679
680
{
681
className: "meta.prompt",
682
begin: /^julia>/,
0 commit comments