Commit 4b9e4d7cddbf593aff4018124aa4035f06837e2c

Martin Mitas 2024-01-16T15:32:21

Move one more forgotten regression test to regressions.txt.

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.)
-