mod_motd_sequential/README.markdown
changeset 1824 8de50be756e5
parent 1807 4d73a1a6ba68
--- a/mod_motd_sequential/README.markdown	Wed Sep 02 16:43:34 2015 +0200
+++ b/mod_motd_sequential/README.markdown	Wed Sep 02 17:30:33 2015 +0200
@@ -16,13 +16,14 @@
 Configuration
 =============
 
-
-        modules_enabled = {
-            -- other modules
-                "motd_sequential";
-        }
-        motd_sequential_messages = {
-            "Hello and welcome to our service!", -- First login
-            "Lorem ipsum dolor sit amet", -- Second time they login
-            -- Add more messages here.
-        }
+``` lua
+modules_enabled = {
+  -- other modules
+    "motd_sequential";
+}
+motd_sequential_messages = {
+  "Hello and welcome to our service!", -- First login
+  "Lorem ipsum dolor sit amet", -- Second time they login
+  -- Add more messages here.
+}
+```