Shaarli export of all bookmarks on Sat, 14 May 16 23:54:18 +0200
- Markdown - code
- PHP stuff:
    <?php
    phpinfo();
    ?>
Python stuff:
    import logging
    import os
    if __name__ == '__main__':
        logging.info("Current directory: %s", os.getcwd())
- Markdown - lists
- Standard:
* item1
* item2
* item3
Nested:
- item1
    - item1.1
    - item1.2
- item2
- Markdown - headers and quotes
- A First Level Header
====================
A Second Level Header
---------------------
Now is the time for all good men to come to
the aid of their country. This is just a
regular paragraph.
The quick brown fox jumped over the lazy
dog's back.
### Header 3
> This is a blockquote.
> 
> This is the second paragraph in the blockquote.
>
> ## This is an H2 in a blockquote