diff --git a/ext/bbcode/info.php b/ext/bbcode/info.php
index 5ee10f5a..ae10d345 100644
--- a/ext/bbcode/info.php
+++ b/ext/bbcode/info.php
@@ -12,21 +12,44 @@ class BBCodeInfo extends ExtensionInfo
public $core = true;
public $description = "Turns BBCode into HTML";
public $documentation =
-" Supported tags:
+" Basic formatting tags:
- - [img]url[/img]
-
- [url]https://code.shishnet.org/[/url]
-
- [email]webmaster@shishnet.org[/email]
- [b]bold[/b]
- [i]italic[/i]
- [u]underline[/u]
- [s]
strikethrough[/s]
- [sup]superscript[/sup]
- [sub]subscript[/sub]
+
- [h1]Heading 1[/h1]
+
- [h2]Heading 2[/h2]
+
- [h3]Heading 3[/h3]
+
- [h4]Heading 4[/h4]
+
- [align=left|center|right]Aligned Text[/align]
+
+
+ Link tags:
+
+ - [img]url[/img]
+
- [url]https://code.shishnet.org/[/url]
+
- [url=https://code.shishnet.org/]some text[/url]
+
- [url]site://ext_doc/bbcode[/url]
+
- [url=site://ext_doc/bbcode]Link to BBCode docs[/url]
+
- [email]webmaster@shishnet.org[/email]
- [[wiki article]]
- [[wiki article|with some text]]
-
- [quote]text[/quote]
-
- [quote=Username]text[/quote]
- >>123 (link to post #123)
+
- [anchor=target]Scroll to #bb-target[/anchor]
+
+
+ More format Tags:
+
+ - [list]Unordered list[/list]
+
- [ul]Unordered list[/ul]
+
- [ol]Ordered list[/ol]
+
- [li]List Item[/li]
+
- [code]
print(\"Hello World!\");
[/code]
+ - [spoiler]Voldemort is bad[/spoiler]
+
- [quote]
To be or not to be...
[/quote]
+ - [quote=Shakespeare]
Shakespeare said:
... That is the question
[/quote]
";
}