Fix readme table

This commit is contained in:
Abe Pazos
2020-05-18 15:02:10 +02:00
committed by Edwin Jakobs
parent 540e8b0498
commit 95d06d22e6
2 changed files with 4 additions and 2 deletions

View File

@@ -5,7 +5,8 @@
A growing library of assorted data structures, algorithms and utilities. A growing library of assorted data structures, algorithms and utilities.
<!-- __orxListBegin__ --> <!-- __orxListBegin__ -->
| name | description | | name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | description |
| --- | --- |
| [`orx-boofcv`](orx-boofcv/README.md) | Helper functions to ease working with the BoofCV computer vision library and its data types. | | [`orx-boofcv`](orx-boofcv/README.md) | Helper functions to ease working with the BoofCV computer vision library and its data types. |
| [`orx-camera`](orx-camera/README.md) | 3D camera controllable via mouse and keyboard. | | [`orx-camera`](orx-camera/README.md) | 3D camera controllable via mouse and keyboard. |
| [`orx-compositor`](orx-compositor/README.md) | Toolkit to make composite (layered) images using blend modes and filters. | | [`orx-compositor`](orx-compositor/README.md) | Toolkit to make composite (layered) images using blend modes and filters. |

View File

@@ -130,7 +130,8 @@ task buildMainReadme {
for (line in header) { for (line in header) {
newReadme.add(line) newReadme.add(line)
} }
newReadme.add("| name | description |") newReadme.add("| name" + ("&nbsp;".repeat(36)) + " | description |")
newReadme.add("| --- | --- |")
// Search for the description at the top of the readme. // Search for the description at the top of the readme.
// Skip the hash character from the headline, then start // Skip the hash character from the headline, then start