Table Header HTML Publish
I am converting our Mif2go publishing process to FM2017. Mif2go has a configuration setting that allows you to use the "th" tag in order to identify the table header in the html. Is there a setting like this in FM?
Looking at the HTML source file, the header row class of "tr1" is also used for cellbody rows. I'm trying to put a background color on the header row. I appreciate any help that you can provide.
| <div width="100%" align="left"> | |
| <table border-spacing="0" dir="ltr" class="table0 ItemList" border-collapse="collapse"> | |
| <caption dir="ltr" class="FM_ItemListTblTitle">Navigation Buttons Item List</caption> | |
| <tr class="tr1"> | |
| <td class="td2"> | |
| <p dir="ltr" class="FM_TBLHead">Item</p> | |
| </td> | |
| <td class="td3"> | |
| <p dir="ltr" class="FM_TBLHead">Description</p> | |
| </td> | |
| </tr> | |
| <tr class="tr1"> | |
| <td class="td2"> | |
| <p dir="ltr" class="FM_CellBodyBold">1</p> | |
| </td> | |
| <td class="td3"> | |
| <p dir="ltr" class="FM_CellBody">Go to the first page.</p> | |
| </td> | |
| </tr> | |
| <tr class="tr1"> | |
| <td class="td2"> | |
| <p dir="ltr" class="FM_CellBodyBold">2</p> | |
| </td> | |
| <td class="td3"> | |
| <p dir="ltr" class="FM_CellBody">Go to the previous page.</p> | |
| </td> |
