MartinPacker / mdpre

mdpre - Markdown Preprocessor
MIT License
8 stars 3 forks source link

=colwidth and =colalign should allow arbitrary whitespace between arguments #10

Closed MartinPacker closed 4 years ago

MartinPacker commented 4 years ago

Today we require eg =colwidth 1 2 3 4 5 6 7 8 but it is useful when writing a table spec to be able to write eg =colwidth 1 2 3 4 5   6 7 8 where the column specs are in groups of 5.

Experience tells me this is useful with counting column specs.

So we just need to turn multiple spaces into one - when parsing =colwidth and =colalign.

MartinPacker commented 4 years ago

Done and merged.