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.
2 parents aa5cbd7 + 58fb089 commit 557317eCopy full SHA for 557317e
dev/docusaurus.config.js
@@ -176,6 +176,7 @@ const config = {
176
prism: {
177
theme: themes.vsLight,
178
darkTheme: themes.vsDark,
179
+ additionalLanguages: ['diff'],
180
},
181
mermaid: {
182
theme: {
dev/src/css/custom.css
@@ -135,3 +135,14 @@ kol-link-button {
135
.used-by-gallery ul li {
136
width: 15rem;
137
}
138
+
139
+/* Highlighting for the diff code blocks */
140
+.token.inserted-sign {
141
+ color: #00cc00;
142
+ background-color: #e6ffe6;
143
+}
144
145
+.token.deleted-sign {
146
+ color: #cc0000;
147
+ background-color: #ffe6e6;
148
0 commit comments