Agenda
Overview
This is one of the most important tasks when managing microsite content. It is extremely important that agenda HTML be properly formatted. This can be a time-consuming and precise process.
The original document must be properly formatted.
Tools
The following tools are useful when creating agenda html:
- Table to HTML This allows you to paste a word, excel or web table and get clean html code.
Examples
3 Column Excel
Take the following original file:
| Time | Talk | Speaker |
|---|---|---|
| 0830 | A great talk title | Speaker Name |
The final HTML that we need to produce is:
<table class="table table-agenda table-striped">
<tbody>
<tr>
<td>0830</td>
<td>A great talk title<br><em>Speaker Name</em></td>
</tr>
</tbody>
</table>
A couple of points of import:
- The table has a class list of
class="table table-agenda table-striped" - The table header has been removed as it is not necessary
- The 3rd column has been collapsed into the second column and the speaker name put in italics:
<td>A great talk title<br><em>Speaker Name</em></td>