diff mod_storage_muc_log/README.markdown @ 1820:8de50be756e5

Various README files: Correct indentation levels, fix syntax and other small fixes
author Kim Alvefur <zash@zash.se>
date Wed, 02 Sep 2015 17:30:33 +0200
parents 4d73a1a6ba68
children 79b9bd84b91c
line wrap: on
line diff
--- a/mod_storage_muc_log/README.markdown	Wed Sep 02 16:43:34 2015 +0200
+++ b/mod_storage_muc_log/README.markdown	Wed Sep 02 17:30:33 2015 +0200
@@ -19,17 +19,19 @@
 
 Replace mod\_muc\_log (and mod\_muc\_log\_http) in your config with
 
-    Component "conference.example.org" "muc"
-        modules_enabled = {
-            -- "muc_log"; -- functionality replaced by mod_mam_muc + mod_storage_muc_log
-            "mam_muc"; -- Does logging to storage backend configured below
+``` {.lua}
+Component "conference.example.org" "muc"
+modules_enabled = {
+  -- "muc_log"; -- functionality replaced by mod_mam_muc + mod_storage_muc_log
+    "mam_muc"; -- Does logging to storage backend configured below
 
-            -- "muc_log_http"; -- Replaced by the mod_http_muc_log
-            "http_muc_log";
-        }
-        storage = {
-            muc_log = "muc_log";
-        }
+    -- "muc_log_http"; -- Replaced by the mod_http_muc_log
+    "http_muc_log";
+}
+storage = {
+  muc_log = "muc_log";
+}
+```
 
 Compatibility
 =============