One minute
Test
First test post to see, if everything works as intended
// Testing syntax highlighting
function (param = 'test') {
if (typeof param !== 'string') {
param = 'test'
}
console.log(param)
}
.selector {
color: red;
}
.selector {
color: $red;
}
FROM docker:image-tag
RUN some-command
server {
listen 80;
server_name stuff.test;
root /some/place/for/stuff;
index index.html;
error_page 404 /404.html;
location / {
try_files $uri $uri/ =404;
}
}
Read other posts