Now using the style's background color when syntax highlighting.

This commit is contained in:
Andrew Hamilton 2016-02-18 19:58:46 +00:00
parent 1a12f6e369
commit cbba46d5c0
10 changed files with 45 additions and 42 deletions

View file

@ -1,8 +1,8 @@
#include <iostream>
using namespace std;
int main()
{
 cout << "Hello World" << endl;
} 
#include <iostream> 
 
using namespace std; 
 
int main() 
{ 
 cout << "Hello World" << endl;
} 

View file

@ -1,2 +1,2 @@
def hi():
 print("hi")
def hi(): 
 print("hi")

View file

@ -1,2 +1,2 @@
#!/usr/bin/perl
print "Hello, world!\n";
#!/usr/bin/perl 
print "Hello, world!\n";

View file

@ -1,2 +1,2 @@
def hi():
def hi():


View file

@ -1,2 +1,2 @@
def hi():
def hi():


View file

@ -1,2 +1,2 @@




View file

@ -1,7 +1,7 @@
#include <stdio.h>
int main()
{
 printf("Hello World\n");
 return 0;
} 
#include <stdio.h> 
 
int main() 
{ 
 printf("Hello World\n");
 return 0; 
} 

View file

@ -1,8 +1,8 @@
#include <iostream>
using namespace std;
int main()
{
 cout << "Hello World" << endl;
} 
#include <iostream> 
 
using namespace std; 
 
int main() 
{ 
 cout << "Hello World" << endl;
} 

View file

@ -1,6 +1,6 @@
#ifndef HELLO_H
#define HELLO_H
void hello();
#endif 
#ifndef HELLO_H
#define HELLO_H
 
void hello(); 
 
#endif