2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-14 18:42:30 +03:00

docs: fix syntax highlighting for shell scripts. (#24103)

Switch all instances to `sh` but keep `bash` so that things won't break either way.
This commit is contained in:
XhmikosR
2017-09-26 12:30:58 +03:00
committed by GitHub
parent 537651c0c6
commit 388356acdf
2 changed files with 15 additions and 5 deletions
+12 -2
View File
@@ -62,5 +62,15 @@
.css .o + .nt,
.css .nt + .nt { color: #999; }
.language-bash::before { color: #009; content: "$ "; user-select: none; }
.language-powershell::before { color: #009; content: "PM> "; user-select: none; }
.language-bash::before,
.language-sh::before {
color: #009;
content: "$ ";
user-select: none;
}
.language-powershell::before {
color: #009;
content: "PM> ";
user-select: none;
}