Blame view

app/views/cms/_textile_quick_reference.html.erb 1.18 KB
42cc1b2f   Antonio Terceiro   Make it work bett...
1
<div class='text-editor-sidebar-box'>
cad471df   Antonio Terceiro   Enhancements on t...
2
  <div class='header'>
42cc1b2f   Antonio Terceiro   Make it work bett...
3
4
5
  <strong><%= _('Textile markup quick reference') %></strong>
  <%= link_to(_('(show)'), '#', :id => 'textile-quickref-show') %>
  <%= link_to(_('(hide)'), '#', :id => 'textile-quickref-hide', :style => 'display: none') %>
cad471df   Antonio Terceiro   Enhancements on t...
6
  </div>
42cc1b2f   Antonio Terceiro   Make it work bett...
7
8
9
10
11
12
13
14
15
16
  <div id='textile-quickref' style='display: none;'>
    <p><%= _('Simple formatting:') %> <code>_<%= _('italics') %>_</code> <code>*<%= _('bold') %>*</code>, <code>-<%= _('striked')%>-</code>.</p>
    <p><%= _('Links:') %> <code>"Noosfero":http://noosfero.org/</code></p>
    <p><%= _('Images:') %> <code>!http://example.com/image.png!</code></p>
    <p><%= _('Bullet lists:') %></p>
    <pre>* <%= _('first item') %>
* <%= _('second item') %></pre>
    <p><%= _('Numbered lists:') %></p>
    <pre># <%= _('first item') %>
# <%= _('second item') %></pre>
dab58951   Carlos Purificação   Fixing html_safe ...
17
    <p><%= h(_('For code, use HTML tags <pre> and <code>, and indent the code inside them:').html_safe) %>
ddab3c35   Larissa Reis   Missing p close tag
18
    </p>
d5780eb7   Antonio Terceiro   Add syntax for co...
19
20
21
22
23
24
25
    <pre>
&lt;pre&gt;
&lt;code&gt;
  a.gsub!( /&lt;/, '' )
&lt;/code&gt;
&lt;/pre&gt;
</pre>
dab58951   Carlos Purificação   Fixing html_safe ...
26
    <p><%= _('See also a more complete <a href="%s">Textile Reference</a>.').html_safe % 'http://redcloth.org/hobix.com/textile/' %></p>
42cc1b2f   Antonio Terceiro   Make it work bett...
27
28
  </div>
</div>