Skip to content

Commit

Permalink
fix: Map bash, sh, shell to shellscript when highlighting
Browse files Browse the repository at this point in the history
Closes #1432
  • Loading branch information
Gerrit0 committed Dec 29, 2020
1 parent b1d1c9d commit 6eb6c28
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib/utils/highlighter.ts
Expand Up @@ -9,6 +9,9 @@ import { unique } from "./array";
const aliases = new Map<string, string>([
["ts", "typescript"],
["js", "javascript"],
["bash", "shellscript"],
["sh", "shellscript"],
["shell", "shellscript"],
]);

const supportedLanguages = unique([
Expand Down

0 comments on commit 6eb6c28

Please sign in to comment.