Skip to content

Commit 0693140

Browse files
committed
QA
1 parent 891cad0 commit 0693140

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

src/Themes/Css/github-light-default.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ pre, code {
2323
color: #9d3af6;
2424
}
2525

26+
.hl-number,
27+
.hl-boolean,
2628
.hl-value {
2729
color: #0a3069;
2830
}

src/Themes/Css/highlight-light-lite.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ pre, code {
2323
color: #9d3af6;
2424
}
2525

26+
.hl-number,
27+
.hl-boolean,
2628
.hl-value {
2729
color: #000;
2830
}

tests/targets/python.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
```py
2+
# Python program to check if the input number is odd or even.
3+
# A number is even if division by 2 gives a remainder of 0.
4+
# If the remainder is 1, it is an odd number.
5+
6+
num = int(input("Enter a number: "))
7+
if (num % 2) == 0:
8+
print("{0} is Even".format(num))
9+
else:
10+
print("{0} is Odd".format(num))
11+
```

0 commit comments

Comments
 (0)