Github can't do literal include
diff --git a/README.rst b/README.rst
index 4fcfb2f..a39fc5d 100644
--- a/README.rst
+++ b/README.rst
@@ -12,8 +12,45 @@
 
 Configuration for syslog from Ubuntu 14.04 (trusty):
 
-.. literalinclude:: tests/pillar/server.sls
-   :language: yaml
+.. code-block:: yaml
+
+    logrotate:
+      server:
+        enabled: true
+        job:
+          rsyslog:
+            - files:
+              - /var/log/mail.info
+              - /var/log/mail.warn
+              - /var/log/mail.err
+              - /var/log/mail.log
+              - /var/log/daemon.log
+              - /var/log/kern.log
+              - /var/log/auth.log
+              - /var/log/user.log
+              - /var/log/lpr.log
+              - /var/log/cron.log
+              - /var/log/debug
+              - /var/log/messages
+            options:
+              - rotate: 4
+              - weekly
+              - missingok
+              - notifempty
+              - compress
+              - delaycompress
+              - sharedscripts
+              - postrotate: "reload rsyslog >/dev/null 2>&1 || true"
+          - files:
+              - /var/log/syslog
+            options:
+              - rotate: 7
+              - daily
+              - missingok
+              - notifempty
+              - delaycompress
+              - compress
+              - postrotate: "reload rsyslog >/dev/null 2>&1 || true"
 
 Reference
 =========