Syntax highlighting
JSON
{
"hello": "world",
"number": 1234567890,
"array": []
}
JSON
[
"hello", "world"
]
JavaScript
console.log('hello world');
console.warn(1 + 1);
alert(false);
const abc = true;
for (i = 1; i <= 4; i++) {
// do something
}
HTML
<!DOCTYPE html>
<span class="hw" id="abc">Hello World!</span>
CSS
* {
background-color: black;
}
span {
color: white;
}
.hw {
border: 1px solid #6e3bf3;
}
#abc {
-webkit-filter: blur(8em);
}
div:before {
content: 'hello';
}
:root {
--color: #ffffff;
@media(max-width: 5px) {
--color: #000000;
}
}
::-webkit-scrollbar {
width: 7px;
height: 7px
}
Bash
#!/bin/bash
echo "Hello World!"
Python
#!/usr/bin/env python3
import time
out = int(time.time() * 1000)
print(out)
Lua
print("hiii")
warn(1 + 1)
local abc = true
while wait(1) do
-- do something
end
Markdown
# markdown inside markdown
Go
// go
Go
// golang
Golo
Golo
Diff
text
+ added
- removed
Swipe right to open the menu and swipe left to close it.