Move one more forgotten regression test to regressions.txt.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
diff --git a/test/regressions.txt b/test/regressions.txt
index 9ac2259..607ec25 100644
--- a/test/regressions.txt
+++ b/test/regressions.txt
@@ -149,6 +149,45 @@ __x_ _x___
````````````````````````````````
+## [Issue 41](https://github.com/mity/md4c/issues/41)
+```````````````````````````````` example
+* x|x
+---|---
+.
+<ul>
+<li>x|x
+---|---</li>
+</ul>
+.
+--ftables
+````````````````````````````````
+(Not a table, because the underline has wrong indentation and is not part of the
+list item.)
+
+```````````````````````````````` example
+* x|x
+ ---|---
+x|x
+.
+<ul>
+<li><table>
+<thead>
+<tr>
+<th>x</th>
+<th>x</th>
+</tr>
+</thead>
+</table>
+</li>
+</ul>
+<p>x|x</p>
+.
+--ftables
+````````````````````````````````
+(Here the underline has the right indentation so the table is detected.
+But the last line is not part of it due its indentation.)
+
+
## [Issue 42](https://github.com/mity/md4c/issues/42)
```````````````````````````````` example
diff --git a/test/tables.txt b/test/tables.txt
index 8f2da38..37ada3e 100644
--- a/test/tables.txt
+++ b/test/tables.txt
@@ -272,45 +272,3 @@ quux | quuz
.
--ftables
````````````````````````````````
-
-
-## GitHub Issues
-
-## [Issue 41](https://github.com/mity/md4c/issues/41)
-```````````````````````````````` example
-* x|x
----|---
-.
-<ul>
-<li>x|x
----|---</li>
-</ul>
-.
---ftables
-````````````````````````````````
-(Not a table, because the underline has wrong indentation and is not part of the
-list item.)
-
-```````````````````````````````` example
-* x|x
- ---|---
-x|x
-.
-<ul>
-<li><table>
-<thead>
-<tr>
-<th>x</th>
-<th>x</th>
-</tr>
-</thead>
-</table>
-</li>
-</ul>
-<p>x|x</p>
-.
---ftables
-````````````````````````````````
-(Here the underline has the right indentation so the table is detected.
-But the last line is not part of it due its indentation.)
-