Skip to content

Commit

Permalink
QA
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt committed May 23, 2024
1 parent 891cad0 commit 0693140
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Themes/Css/github-light-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ pre, code {
color: #9d3af6;
}

.hl-number,
.hl-boolean,
.hl-value {
color: #0a3069;
}
Expand Down
2 changes: 2 additions & 0 deletions src/Themes/Css/highlight-light-lite.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ pre, code {
color: #9d3af6;
}

.hl-number,
.hl-boolean,
.hl-value {
color: #000;
}
Expand Down
11 changes: 11 additions & 0 deletions tests/targets/python.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
```py
# Python program to check if the input number is odd or even.
# A number is even if division by 2 gives a remainder of 0.
# If the remainder is 1, it is an odd number.

num = int(input("Enter a number: "))
if (num % 2) == 0:
print("{0} is Even".format(num))
else:
print("{0} is Odd".format(num))
```

0 comments on commit 0693140

Please sign in to comment.