Fix table heading alignment

This commit is contained in:
Brian Beck 2016-11-28 19:24:45 -08:00
parent b8a64ddc38
commit a249602cf3
2 changed files with 6 additions and 3 deletions

View file

@ -3771,7 +3771,8 @@ these results were found through a search.</td>
### ReleaseGroupType
<table><thead>
<th>Value</th><th>Description</th>
<th align="left">Value</th>
<th align="left">Description</th>
</thead><tbody>
<tr>
<td valign="top"><strong>ALBUM</strong></td>
@ -3873,7 +3874,8 @@ reference use rather than for general public release.</td>
### ReleaseStatus
<table><thead>
<th>Value</th><th>Description</th>
<th align="left">Value</th>
<th align="left">Description</th>
</thead><tbody>
<tr>
<td valign="top"><strong>OFFICIAL</strong></td>

View file

@ -117,7 +117,8 @@ enums.forEach(type => {
console.log(`${type.description}\n`)
}
console.log('<table><thead>')
console.log(' <th>Value</th><th>Description</th>')
console.log(' <th align="left">Value</th>')
console.log(' <th align="left">Description</th>')
console.log('</thead><tbody>')
type.enumValues.forEach(value => {
console.log(' <tr>')