Consider this MWE:
DOCUMENT();
loadMacros(qw(PGstandard.pl PGML.pl));
BEGIN_PGML
[#
[..] [.A.]*
[.B.] [.C.]
#]
END_PGML
ENDDOCUMENT();
This renders as if the [..] cell were never there in the first place, putting the "A" in the top left cell.
The top left cell is empty, and there is a legitimate reason to support that when you consider tables with column headers and row headers and it is natural for that top left cell to be empty. You can hack it by replacing [..] with [. .], but I think we should get to work even with [..].
PGML is effectively eradicating that [..] cell at some stage and I can't pinpoint where I could adjust that behavior. @dpvc , are you able to point me in the right direction?
Consider this MWE:
This renders as if the
[..]cell were never there in the first place, putting the "A" in the top left cell.The top left cell is empty, and there is a legitimate reason to support that when you consider tables with column headers and row headers and it is natural for that top left cell to be empty. You can hack it by replacing
[..]with[. .], but I think we should get to work even with[..].PGML is effectively eradicating that
[..]cell at some stage and I can't pinpoint where I could adjust that behavior. @dpvc , are you able to point me in the right direction?