I'm new to literotica, currently composing my first story. I'm doing something fairly close to the litrpg genre (that is, I'm using an actual rpg, but the characters are not aware of the system), and I want to make a table of a character's stats.
I've been doing it with fairly simple html, like below:
Unfortunately when I do this and then preview the story, it seems like a massive amount of blank spaces get inserted between the
I've been doing it with fairly simple html, like below:
HTML:
<p>
<b>Quirks</b>
</p>
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup>
<col />
</colgroup>
<tbody>
<tr>
<td>Free-Spirited</td>
</tr>
<tr>
<td>Suspicious</td>
</tr>
<tr>
<td>Unnatural Features (Deep blue skin and hair)</td>
</tr>
<tr>
<td>Unnatural Features (Coal black eyes that burn like embers)</td>
</tr>
</tbody>
</table>
Unfortunately when I do this and then preview the story, it seems like a massive amount of blank spaces get inserted between the
<p> tag and the table. Is this just an artifact of the preview, or is there something else going on?