-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix detection of separator lines: 1. Always check that at least one dash is present 2. Analyze whole content between pipes including white spaces
- Loading branch information
Showing
5 changed files
with
95 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
| XXX, XXXXX | XXXXXX | XXXXXX | | ||
|---------------------|-----------------|------------------| | ||
| XXXXX XXXX | XXXX-XX XXXX | XXXXXXXXX, XX | | ||
| XXXXX XXXXX (X) | XX:XXXX | X:XXXX | | ||
| | | | | ||
| XXX, XXXXX | XXXXXX | XXXXXX | | ||
|---------------------|-----------------|------------------| | ||
| XXXXX XXXX | XXXXXXXXX, XX | XXXXXX, XX | | ||
| XXXXX XXXXXXX+ (X) | X:XXXX | XX:XXXX | | ||
| | | | | ||
| XXX, XXXXX | XXXXXX | XXXXXX | | ||
|---------------------|-----------------|------------------| | ||
| XXXXX XXXX | XXXXXX, XX | XXXX-XX XXXX | | ||
| XXXXX XXXXX (X) | X:XXXX | X:XXXX | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<table> | ||
<tr> | ||
<th>XXX, XXXXX</th> | ||
<th>XXXXXX</th> | ||
<th>XXXXXX</th> | ||
</tr> | ||
<tr> | ||
<td>XXXXX XXXX</td> | ||
<td>XXXX-XX XXXX</td> | ||
<td>XXXXXXXXX, XX</td> | ||
</tr> | ||
<tr> | ||
<td>XXXXX XXXXX (X)</td> | ||
<td>XX:XXXX</td> | ||
<td>X:XXXX</td> | ||
</tr> | ||
<tr> | ||
<td></td> | ||
<td></td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<th>XXX, XXXXX</th> | ||
<th>XXXXXX</th> | ||
<th>XXXXXX</th> | ||
</tr> | ||
<tr> | ||
<td>XXXXX XXXX</td> | ||
<td>XXXXXXXXX, XX</td> | ||
<td>XXXXXX, XX</td> | ||
</tr> | ||
<tr> | ||
<td>XXXXX XXXXXXX+ (X)</td> | ||
<td>X:XXXX</td> | ||
<td>XX:XXXX</td> | ||
</tr> | ||
<tr> | ||
<td></td> | ||
<td></td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<th>XXX, XXXXX</th> | ||
<th>XXXXXX</th> | ||
<th>XXXXXX</th> | ||
</tr> | ||
<tr> | ||
<td>XXXXX XXXX</td> | ||
<td>XXXXXX, XX</td> | ||
<td>XXXX-XX XXXX</td> | ||
</tr> | ||
<tr> | ||
<td>XXXXX XXXXX (X)</td> | ||
<td>X:XXXX</td> | ||
<td>X:XXXX</td> | ||
</tr> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
| -- | -- | -- | | ||
|--|--|--| | ||
| - | -- | ---- | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<table> | ||
<tr> | ||
<th>–</th> | ||
<th>–</th> | ||
<th>–</th> | ||
</tr> | ||
<tr> | ||
<td>-</td> | ||
<td>–</td> | ||
<td>––</td> | ||
</tr> | ||
</table> |