public
Fork of chagel/CNPROG
Description: An open source Q&A(question and answer) eco-system
Homepage: http://www.cnprog.com
Clone URL: git://github.com/evgenyfadeev/CNPROG.git
CNPROG / templates / answer_edit_tips.html
100644 55 lines (50 sloc) 1.685 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!-- template answer_edit_tips.html -->
{% load i18n %}
<div class="boxC">
    <p class="subtitle darkred">{% trans "answer tips" %}</p>
    <div>
        <ul class="list-item">
            <li> <b>{% trans "please make your answer relevant to this community" %}</b>
            </li>
            <li>
                {% trans "try to give an answer, rather than engage into a discussion" %}
            </li>
            <li>
                {% trans "please try to provide details" %}
            </li>
            <li>
{% trans "be clear and concise" %}
            </li>
        </ul>
         <a href="/faq/" target="_blank" title="{% trans "see frequently asked questions" %}" style="float:right;position:relative">faq »</a>
         <br>
    </div>
</div>
 
<div class="boxC">
    <p class="subtitle">{% trans "Markdown tips" %}</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 "basic HTML tags are also supported" %}
        </li>
    </ul>
    <a href="http://en.wikipedia.org/wiki/Markdown" target="_blank" style="float:right;position:relative">{% trans "learn more about Markdown" %} »</a>
    <br>
</div>
<!-- end template answer_edit_tips.html -->