Chalarangelo/mini.css

[docs] Mismatched opening/closing tags in example

tinybarks opened this issue · 1 comments

In docs/table.html and docs/quick_reference.html, there's the "Star Wars Character Alignment Table", an example for matrix tables. Unfortunately, the top row reads:

      <th>Lawful</td>
      <th>Neutral</td>
      <th>Chaotic</td>

While this probably renders fine in any browser since they just figure it's a mistake, this should of course be:

      <th>Lawful</th>
      <th>Neutral</th>
      <th>Chaotic</th>

The CodePen also is affected.

I would've submitted a PR, but there don't seem to be any sources for the docs.

Hello, thanks for reporting this! The source code for the docs is in the docs folder, as the website is hosted via Github pages. If you have the time, submit a PR and I will merge that asap and I will also fix the Codepen.