Paragraphs are separated by a blank line.
2nd paragraph. Italic, bold, monospace
. Itemized lists
look like:
- this one
- that one
With an extra file. |
This is <i>only</i> a test. |
class a(): | |
def set_attrs_in_class_given_key_value_pairs(**kwargs): | |
for k,v in kwargs.iteritems(): | |
setattr(self, k, v) |
This is the content.
This is a test. |
from fabric.api import env, put, run, sudo | |
from fabric.contrib.files import upload_template | |
env.hosts = ['host1', 'host2'] | |
env.password = 'your_password' | |
def upgrade(): | |
run('apt-get update && apt-get -y upgrade') | |
reboot() |