# HG changeset patch # User Kim Alvefur # Date 1689604845 -7200 # Node ID 39bb7232326dc5466135fae0c7850cf6485234bf # Parent 17aa3bac7f3ac48c68d1e40c5f571556001bd742 mod_default_bookmarks: Include 'autojoin' in examples The text does mention this, but who reads that? diff -r 17aa3bac7f3a -r 39bb7232326d mod_default_bookmarks/README.markdown --- a/mod_default_bookmarks/README.markdown Sat Jul 15 12:27:24 2023 +0200 +++ b/mod_default_bookmarks/README.markdown Mon Jul 17 16:40:45 2023 +0200 @@ -31,13 +31,15 @@ Then add a list of the default rooms you want: - default_bookmarks = { - { jid = "room@conference.example.com", name = "The Room" }; - -- Specifying a password is supported: - { jid = "secret-room@conference.example.com", name = "A Secret Room", password = "secret" }; - -- You can also use this compact syntax: - "yetanother@conference.example.com"; -- this will get "yetanother" as name - }; +``` lua +default_bookmarks = { + { jid = "room@conference.example.com"; name = "The Room"; autojoin = true }; + -- Specifying a password is supported: + { jid = "secret-room@conference.example.com"; name = "A Secret Room"; password = "secret"; autojoin = true }; + -- You can also use this compact syntax: + "yetanother@conference.example.com"; -- this will get "yetanother" as name +}; +``` Compatibility -------------