diff --git a/r2/r2/templates/usertext.html b/r2/r2/templates/usertext.html
index 604f9f0d4..bf9195f1e 100644
--- a/r2/r2/templates/usertext.html
+++ b/r2/r2/templates/usertext.html
@@ -29,6 +29,75 @@
<%namespace file="printablebuttons.html" import="toggle_button" />
<%namespace file="utils.html" import="error_field, md"/>
+<%def name="markhelp()">
+
+
${md(strings.formatting_help_info)}
+
+
+ | ${_( "you type:")} |
+ ${_( "you see:")} |
+
+
+ | *${_( "italics")}* |
+ ${_( "italics")} |
+
+
+ | **${_( "bold")}** |
+ ${_( "bold")} |
+
+
+ | [reddit!](http://reddit.com) |
+ reddit! |
+
+
+
+ * ${_( "item")} 1
+ * ${_( "item")} 2
+ * ${_( "item")} 3
+ |
+
+
+ - ${_( "item")} 1
+ - ${_( "item")} 2
+ - ${_( "item")} 3
+
+ |
+
+
+ | > ${_( "quoted text")} |
+ ${_( "quoted text" )} |
+
+
+
+ Lines starting with four spaces
+ are treated like code:
+
+
+
+ if 1 * 2 < 3:
+
+
+
+ print "hello, world!"
+ |
+ Lines starting with four spaces
+ are treated like code:
+ if 1 * 2 < 3: print "hello,
+ world!"
+ |
+
+
+ | ~~strikethrough~~ |
+ strikethrough |
+
+
+ | super^script |
+ superscript |
+
+
+
+%def>
+
<%def name="action_button(name, btn_type, onclick, display)">