Skip to content

Commit ee8b2b3

Browse files
committed
highlight success
1 parent 3efc97f commit ee8b2b3

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

test/index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,15 @@
3030
}
3131

3232
.type {
33-
color: purple;
33+
color: rgb(175, 0, 175);
3434
}
3535

3636
.symbol {
37-
color:red;
37+
color:rgb(10, 142, 182);
38+
}
39+
40+
.S {
41+
font:bolder 14px arial,sans-serif;
3842
}
3943
</style>
4044

test/wast.code.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wast/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ namespace wast {
101101
// using strong text style
102102
addCodeToken();
103103
// add current S-expression token delimiter
104-
line.push($ts("<span>", { style: "font-style: strong;" }).display(c));
104+
line.push($ts("<span>", { class: "S" }).display(c));
105105
} else if (c == "\n") {
106106
addLine();
107107
} else {

0 commit comments

Comments
 (0)