]> git.openstreetmap.org Git - osqa.git/commitdiff
forgot to commit this.
authorqw3rty <qw3rty@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Tue, 29 Jun 2010 18:07:01 +0000 (18:07 +0000)
committerqw3rty <qw3rty@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Tue, 29 Jun 2010 18:07:01 +0000 (18:07 +0000)
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@475 0cfe37f9-358a-4d5e-be75-b63607b5c754

forum/skins/default/templates/sidebar/markdown_help.html [new file with mode: 0644]

diff --git a/forum/skins/default/templates/sidebar/markdown_help.html b/forum/skins/default/templates/sidebar/markdown_help.html
new file mode 100644 (file)
index 0000000..71dff87
--- /dev/null
@@ -0,0 +1,35 @@
+{% load i18n %}
+<div class="boxC" id="editor_side_bar">
+    <p class="subtitle darkred">{% trans "Markdown Basics" %}</p>
+    <ul class="list-item">
+        <li>
+            {% trans "*italic* or __italic__" %}
+        </li>
+        <li>
+                       {% trans "**bold** or __bold__" %}
+        </li>
+        <li>
+            <b>{% trans "link" %}</b>:[{% trans "text" %}](http://url.com/ "{% trans "title" %}")
+
+        </li>
+
+        <li>
+            <b>{% trans "image" %}</b>?![alt {% trans "text" %}](/path/img.jpg "{% trans "title" %}")
+
+        </li>
+        <li>
+                       {% trans "numbered list:" %}
+            1.  Foo
+            2.  Bar
+        </li>
+        <li>
+                       {% trans "to add a line break simply add two spaces to where you would like the new line to be." %}
+        </li>
+        <li>
+                       {% trans "basic HTML tags are also supported" %}
+        </li>
+    </ul>
+    <p class='info-box-follow-up-links'>
+        <a href="{% url markdown_help %}" target="_blank">{% trans "learn more about Markdown" %} </a>
+    </p>
+</div>