Skip to content

Commit

Permalink
feat: Add 'Protobuf' highlighting, closes #8141
Browse files Browse the repository at this point in the history
  • Loading branch information
tommoor committed Dec 26, 2024
1 parent 3437bd3 commit a4becd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions shared/editor/extensions/Prism.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export const LANGUAGES = {
perl: "Perl",
php: "PHP",
powershell: "Powershell",
protobuf: "Protobuf",
python: "Python",
r: "R",
ruby: "Ruby",
Expand Down
2 changes: 2 additions & 0 deletions shared/editor/nodes/CodeFence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import ocaml from "refractor/lang/ocaml";
import perl from "refractor/lang/perl";
import php from "refractor/lang/php";
import powershell from "refractor/lang/powershell";
import protobuf from "refractor/lang/protobuf";
import python from "refractor/lang/python";
import r from "refractor/lang/r";
import ruby from "refractor/lang/ruby";
Expand Down Expand Up @@ -121,6 +122,7 @@ const DEFAULT_LANGUAGE = "javascript";
php,
python,
powershell,
protobuf,
r,
ruby,
rust,
Expand Down

0 comments on commit a4becd6

Please sign in to comment.