view gpp/templates/core/markdown_help.html @ 265:1ba2c6bf6eb7

Closing #98. Animated GIFs were losing their transparency and animated properties when saved as avatars. Reworked the avatar save process to only run the avatar through PIL if it is too big. This preserves the original uploaded file if it is within the desired size settings. This may still mangle big animated gifs. If this becomes a problem, then maybe look into calling the PIL Image.resize() method directly. Moved the PIL image specific functions from bio.forms to a new module: core.image for better reusability in the future.
author Brian Neal <bgneal@gmail.com>
date Fri, 24 Sep 2010 02:12:09 +0000
parents 9c82c7984884
children b783a555cd87
line wrap: on
line source
<p>Hit <code>ESC</code> or click the <code>X</code> to close this window.</p>
<table class="grid">
   <tr><th>&nbsp;</th><th>Type This</th><th>To See This</th></tr>
   <tr>
      <th>Paragrahs</th>
      <td>
<pre>Paragraphs must be separated by a blank line.

Here is another paragraph.
</pre></td>
      <td>
         <p>Paragraphs must be separated by a blank line.</p>
         <p>Here is another paragraph.</p>
      </td>
   </tr>
   <tr>
      <th>Manual Line Breaks</th>
      <td>
<pre>To insert a line break  
end a line with two or more spaces.
</pre></td>
      <td>
         <p>To insert a line break <br />
         end a line with two or more spaces.</p>
      </td>
   </tr>
   <tr>
      <th>Emphasis</th>
      <td>
<pre>*italic*
_italic_
**bold**
__bold__</pre></td>
      <td><i>italic</i><br />
         <i>italic</i><br />
         <b>bold</b><br />
         <b>bold</b></td>
   </tr>
   <tr>
      <th>Inline links</th>
      <td>A link to [Google](http://google.com).</td>
      <td>A link to <a href="http://google.com">Google</a>.</td>
   </tr>
   <tr>
      <th>Reference links</th>
      <td>A link to [Google][id]. Then anywhere else in the
         text, define the link on its own line.<br/>
         [id]: http://google.com </td>
      <td>A link to <a href="http://google.com">Google</a>. Then
      anywhere else in the text, define the link on its own line.</td>
   </tr>
   <tr>
      <th>Inline Images</th>
      <td>![alt text](http://example.com/smile.jpg "Smile").</td>
      <td><img src="/media/icons/emoticon_smile.png" alt="alt text" title="Smile" /></td>
   </tr>
   <tr>
      <th>Reference Images</th>
      <td>![alt text][id]<br />
      [id]: http://example.com/smile.jpg "Smile"</td>
      </td>
      <td><img src="/media/icons/emoticon_smile.png" alt="alt text" title="Smile" /></td>
   </tr>
   <tr>
      <th>Bullet List</th>
      <td>
      <pre>* One
* Two
* Three</pre></td>
      <td>
         <ul>
         <li>One</li>
         <li>Two</li>
         <li>Three</li>
         </ul>
      </td>
   </tr>
   <tr>
      <th>Numbered List</th>
      <td>
      <pre>1. One
1. Two
1. Three</pre></td>
      <td>
         <ol>
         <li>One</li>
         <li>Two</li>
         <li>Three</li>
         </ol>
      </td>
   </tr>
   <tr>
      <th>Blockquotes</th>
      <td><pre>John said:
&gt; Email style angle brackets
&gt; are used for quotes.</pre></td>
      <td><p>John said:</p>
         <blockquote><p>Email-style angle brackets are used for blockquotes.</p></blockquote></td>
   </tr>
   <tr>
      <th>Code Spans</th>
      <td><pre>`&lt;code&gt;` spans are delimited by backticks.</pre></td>
      <td><p><code>&lt;code&gt;</code> spans are delimited by backticks.</p></td>
   </tr>
   <tr>
      <th>Code Blocks</th>
      <td><pre>First insert a blank line.

    Then indent every line 
    of a code block by at least
    4 spaces. This is useful to 
    display tablature.
</pre></td>
      <td>
<p>First insert a blank line.</p>

<pre><code>Then indent every line 
of a code block by at least
4 spaces. This is useful to 
display tablature.
</code></pre>
      </td>
   </tr>
   <tr>
      <th>Header 1</th>
      <td>
      <pre>Header 1
========
</pre></td>
      <td><h1>Header 1</h1></td>
   </tr>
   <tr>
      <th>Header 2</th>
      <td>
      <pre>Header 2
--------
</pre></td>
      <td><h2>Header 2</h2></td>
   </tr>
   <tr>
      <th>Header 1</th>
      <td><pre># Header 1</pre></td>
      <td><h1>Header 1</h1></td>
   </tr>
   <tr>
      <th>Header 2</th>
      <td><pre>## Header 2</pre></td>
      <td><h2>Header 2</h2></td>
   </tr>
   <tr>
      <th>Header 3</th>
      <td><pre>### Header 3</pre></td>
      <td><h3>Header 3</h3></td>
   </tr>
   <tr>
      <th>Header 6</th>
      <td><pre>###### Header 6</pre></td>
      <td><h6>Header 6</h6></td>
   </tr>
</table>
<p>
More help:
</p>
<ul>
   <li><a href="http://daringfireball.net/projects/markdown/basics" target="_blank">Markdown Basics</a></li>
   <li><a href="http://daringfireball.net/projects/markdown/syntax" target="_blank">Markdown Reference</a></li>
</ul>
<p>Hit <code>ESC</code> or click the <code>X</code> to close this window.</p>