Add help for the use of tables in org-mode

This commit is contained in:
Puneeth Chaganti
2011-02-03 16:32:43 +05:30
parent 2648e75328
commit c088cc0617
@@ -133,6 +133,10 @@ var OrgModeHelp = [
menuName: 'Code Blocks',
data: '<p>Code Blocks are similar to blockquote, except that <code>#+BEGIN_EXAMPLE</code> and <code>#+END_EXAMPLE</code> are used.</p>'
},
{
menuName: 'Tables',
data: '<p>Orgmode supports simple tables (tables with equal number of cells in each row). To create a simple table, just separate the contents of each cell with a <code>|</code> character. For example, <br><br><code>|one|two|three|<br>|four|five|six|</code><br><br> will appear as a table with two rows and three columns. Additionally, <br><br><code>|one|two|three|<br>|---+---+-----|<br>|four|five|six|</code><br><br> will also appear as a table, but the first row will be interpreted as a header row and the <code>&lt;th&gt;</code> tag will be used to render it. </p>'
},
]
},