jenkins-bot has submitted this change and it was merged.

Change subject: Improve markdown and workaround bug 54050
......................................................................


Improve markdown and workaround bug 54050

Original Markdown guide suggests using four spaces
for standalone code blocks, not standalone quotes.

Remove word "tags" in angle quotes, it does not
play well with markdown - github renders it as
the HTML tag and automatically closes it.

Change-Id: I31058567cfe9d2cba412d6fc2795f8d7f7f56a0f
---
M README.md
1 file changed, 6 insertions(+), 16 deletions(-)

Approvals:
  MZMcBride: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/README.md b/README.md
index a29a729..ab340d1 100644
--- a/README.md
+++ b/README.md
@@ -4,21 +4,15 @@
 
 ## Configuration
 
-`
-$wgNamespacesToPostIn = array( NS_PROJECT, NS_USER_TALK );
-`
+    $wgNamespacesToPostIn = array( NS_PROJECT, NS_USER_TALK );
 
 This limits the bot to only posting in the Project: and User talk: namespaces.
 
-`
-$wgNamespacesToConvert = array( NS_USER => NS_USER_TALK );
-`
+    $wgNamespacesToConvert = array( NS_USER => NS_USER_TALK );
 
 This allows a user to specify a page in the User: namespace, and the bot will 
automatically convert it to the User talk: namespace.
 
-`
-$wgMassMessageAccountUsername = 'MessengerBot';
-`
+    $wgMassMessageAccountUsername = 'MessengerBot';
 
 The account name that the bot will post with. If this is an existing account, 
the extension will automatically take it over.
 
@@ -38,15 +32,11 @@
 The input list provided to the special page must be formatted using a custom 
parser function.
 
 
-`
-{{#target:Project:Noticeboard}}
-`
+    {{#target:Project:Noticeboard}}
 
 In this example, the target page is `[[Project:Noticeboard]]` on your local 
site.
 
-`
-{{#target:User talk:Example|en.wikipedia.org}}
-`
+    {{#target:User talk:Example|en.wikipedia.org}}
 
 In this one, the target is `[[User talk:Example]]` on the "en.wikipedia.org" 
domain.
 
@@ -56,7 +46,7 @@
 
 ### Body
 
-The body is the main text of the message. You will be automatically warned if 
your message is detected to have unclosed <tags>, but it will not prevent 
message delivery.
+The body is the main text of the message. You will be automatically warned if 
your message is detected to have unclosed HTML tags, but it will not prevent 
message delivery.
 
 Wikis can choose to add an enforced footer by editing the 
`massmessage-message-footer` message. In addition to that, a hidden comment 
will be added containing the user who sent the message, what project it was 
sent from, and the input list that was used. That comment can be modified by 
editing the `massmessage-hidden-comment` on the target site.
 

-- 
To view, visit https://gerrit.wikimedia.org/r/84142
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I31058567cfe9d2cba412d6fc2795f8d7f7f56a0f
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/MassMessage
Gerrit-Branch: master
Gerrit-Owner: saper <[email protected]>
Gerrit-Reviewer: Chad <[email protected]>
Gerrit-Reviewer: Legoktm <[email protected]>
Gerrit-Reviewer: MZMcBride <[email protected]>
Gerrit-Reviewer: Peachey88 <[email protected]>
Gerrit-Reviewer: jenkins-bot

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to