Playing around with markdown in the blog.
This is the first empty post for a markdown blog. This is quoted text is this quoted text?
Here we link to the basic daringfireball markdown post.
Otherwise, there is no news. Good news is no news. How can we all walk this path? Lorem Ipsum blah blah. Italic text emphsis bold? ~strikethrough~
Title | Title2 | Title 3 |
---|---|---|
a | b | c |
d | e | f |
g | h | i |
j | k | l |
- List 1
- list 2
- list 3
hello
- number 1
- number 2
- number 3
10 times more traffic from Google than from Yahoo or MSN.
This is an H1
This is an H2
H3
H4
H5
H6 finally
Block quote
Nested Block quote
unfriggingbelievable heck! *literal asterisks*
Testing Code
$path = explode('/', $_SERVER['REQUEST_URI']);
$icsFile = end($path);
location ~ ^/lib/plugins/davcal/ics.php/(.*)$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param REDIRECT_STATUS 200;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
}