Skip to content

Code Syntax Color Highlight Test

Python

You can use the py or the full python to format Python code.

1
2
3
4
5
6
7
```python
hello_string = "Hello World!"
print(hello_string)
x = 1
if x == 1:
    # indented four spaces
    print("x is 1.")
1
2
3
4
5
6
7
```python
hello_string = "Hello World!"
print(hello_string)
x = 1
if x == 1:
    # indented four spaces
    print("x is 1.")

JavaScript

1
2
// the hello world program
console.log('Hello World');

Shell

1
echo "Hello World!"

CSV

1
2
1,"Hello"
2,"World!"