diff --git a/htroot/Help.html b/htroot/Help.html
index 2875acc61..56a6b982c 100644
--- a/htroot/Help.html
+++ b/htroot/Help.html
@@ -66,7 +66,44 @@ s --> Search Page
n --> News
w --> Network
t --> Status
-
+
+
+
. | : arbitrary character |
x | : character x |
^x | : not x |
x* | : 0 or more times x |
x? | : 0 or 1 time x |
x+ | : 1 or more times x |
xy | : concatenation of x and y |
x|y | : x or y |
[abc] | : a or b or c (same as a|b|c) |
[a-c] | : a or b or c (same as above) |
x{n} | : exactly n appearances of x |
x{n,} | : at least n appearances of x |
x{n,m} | : at least n, maximum m appearanches of x |
( ) | : Modify priority of instructions |
\ | : Escape-Character, used to escape special characters (for example "[" or "*"), so that they loose their special meaning |