##// END OF EJS Templates
Added tag 4.5.0 for changeset 9a6dc4edfecb
Added tag 4.5.0 for changeset 9a6dc4edfecb

File last commit:

r1398:a28c6a15 default
r1936:13b941d2 default
Show More
help.html
22 lines | 1.0 KiB | text/html | HtmlLexer
{% extends "boards/static_base.html" %}
{% load i18n %}
{% block head %}
<title>{% trans "Syntax" %}</title>
{% endblock %}
{% block staticcontent %}
<h2>{% trans 'Syntax' %}</h2>
<p>[i]<i>{% trans 'Italic text' %}</i>[/i]</p>
<p>[b]<b>{% trans 'Bold text' %}</b>[/b]</p>
<p>[spoiler]<span class="spoiler">{% trans 'Spoiler' %}</span>[/spoiler]</p>
<p>[post]123[/post] — {% trans 'Link to a post' %}</p>
<p>[s]<span class="strikethrough">{% trans 'Strikethrough text' %}</span>[/s]</p>
<p>[comment]<span class="comment">{% trans 'Comment' %}</span>[/comment]</p>
<p>[quote]<span class="quote">&gt;{% trans 'Quote' %}</span>[/quote]</p>
<p>[quote=src]<div class="multiquote"><div class="quote-header">src</div><div class="quote-text">{% trans 'Quote' %}</div></div><br />[/quote]</p>
<p>[tag]<a class="tag">tag</a>[/tag]</p>
<br/>
<p>{% trans 'You can try pasting the text and previewing the result here:' %} <a href="{% url 'preview' %}">{% trans 'Preview' %}</a></p>
{% endblock %}