Skip to main content

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:

  1. 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:

TimeTalkSpeaker
0830A great talk titleSpeaker 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:

  1. The table has a class list of class="table table-agenda table-striped"
  2. The table header has been removed as it is not necessary
  3. 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>