Skip to content

Commit

Permalink
fix syntax highlights in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jitinnair1 committed Oct 5, 2022
1 parent fdaa156 commit 5a09b70
Show file tree
Hide file tree
Showing 3 changed files with 345 additions and 96 deletions.
24 changes: 15 additions & 9 deletions _projects/longerProjectTitle.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,21 @@ define foobar() {
~~~

(which makes copying & pasting easier). You can optionally mark the
delimited block for Pandoc to syntax highlight it by specifying the languagae after the start of a block (e.g. `~~~python`) which would look like :

~~~python
import time
# Quick, count to ten!
for i in range(10):
# (but not *too* quick)
time.sleep(0.5)
print(i)
delimited block for Pandoc to syntax highlight it by specifying the languagae after the start of a block (e.g. `~~~cpp`) which would look like :

~~~cpp
#include <iostream>
using namespace std;

int main()
{
cout << "Size of char: " << sizeof(char) << " byte" << endl;
cout << "Size of int: " << sizeof(int) << " bytes" << endl;
cout << "Size of float: " << sizeof(float) << " bytes" << endl;
cout << "Size of double: " << sizeof(double) << " bytes" << endl;

return 0;
}
~~~

### An H3 header ###
Expand Down
87 changes: 0 additions & 87 deletions assets/css/_sass/monokai.scss

This file was deleted.

Loading

0 comments on commit 5a09b70

Please sign in to comment.