Fossil

View Ticket
Login

View Ticket

2020-08-19
03:08 Fixed ticket [95ce0e5302]: Blank cells in markdown tables are ignored plus 2 other changes ... (artifact: 121f7f6ae9 user: andygoth)
03:05 Ticket [95ce0e5302]: 5 changes ... (artifact: 3e16c13168 user: andygoth)
01:33
Restore blank cell capability, fixes [95ce0e53] ... (check-in: dc94ebc2cd user: andygoth tags: trunk)
01:27 Ticket [95ce0e5302] Blank cells in markdown tables are ignored status still Open with 6 other changes ... (artifact: aebae5e0a9 user: andygoth)
01:13 New ticket [95ce0e5302]. ... (artifact: 224fffc3c7 user: andygoth)

Ticket Hash: 95ce0e5302263e8377f961314075037dbfa6e83f
Title: Blank cells in markdown tables are ignored
Status: Fixed Type: Code_Defect
Severity: Important Priority: Immediate
Subsystem: Resolution: Fixed
Last Modified: 2020-08-19 03:08:03
Version Found In: 7c98df415874259b0f6e5ecaffc5959dee756ba8
User Comments:
andygoth added on 2020-08-19 01:13:47:

In a markdown table, blank cells are now ignored altogether and don't even work as placeholders. Consider the example table from https://fossil-scm.org/home/md_rules:

(markup)

| Header 1     | Header 2    | Header 3      |
----------------------------------------------
| Row 1 Col 1  | Row 1 Col 2 | Row 1 Col 3   |
|:Left-aligned |:Centered   :| Right-aligned:|
|              | ← Blank   → |               |
| Row 4 Col 1  | Row 4 Col 2 | Row 4 Col 3   |

(rendered)

Header 1 Header 2 Header 3
Row 1 Col 1 Row 1 Col 2 Row 1 Col 3
Left-aligned Centered Right-aligned
← Blank →
Row 4 Col 1 Row 4 Col 2 Row 4 Col 3

That cell "← Blank →" used to appear in the middle column. Now it is on the left.


andygoth (claiming to be Andy Goth) added on 2020-08-19 01:27:10:

Bisection reveals the problem was introduced by [2263cf086e9fabba96ce88451fa87cc32a1f0305].


andygoth (claiming to be Andy Goth) added on 2020-08-19 03:05:46:

Fixed by dc94ebc2.