aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2017-09-26 12:30:58 +0300
committerGitHub <[email protected]>2017-09-26 12:30:58 +0300
commit388356acdfa8fac31773a881290ec5696e71208c (patch)
tree66f8758c51fd6f5f5922ad83cf8a52cb4abcb896 /assets
parent537651c0c6f2b0758e23874b7ee922504737d3a6 (diff)
downloadbootstrap-388356acdfa8fac31773a881290ec5696e71208c.tar.xz
bootstrap-388356acdfa8fac31773a881290ec5696e71208c.zip
docs: fix syntax highlighting for shell scripts. (#24103)
Switch all instances to `sh` but keep `bash` so that things won't break either way.
Diffstat (limited to 'assets')
-rw-r--r--assets/scss/_syntax.scss14
1 files changed, 12 insertions, 2 deletions
diff --git a/assets/scss/_syntax.scss b/assets/scss/_syntax.scss
index 9b5b2e712..ca19dde81 100644
--- a/assets/scss/_syntax.scss
+++ b/assets/scss/_syntax.scss
@@ -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;
+}