all repos — grayfriday @ 52676fb0053ff19b59451b2aed2a1b8de7d89592

blackfriday fork with a few changes

Merge pull request #314 from Ambrevar/v2consttype

v2: Add missing type to TableAlignment* constants
Vytautas Ĺ altenis vytas@rtfb.lt
Sun, 09 Oct 2016 10:26:09 +0300
commit

52676fb0053ff19b59451b2aed2a1b8de7d89592

parent

2b483a85554cd1b60230d4a49858f80be43ace23

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M markdown.gomarkdown.go

@@ -86,7 +86,7 @@ // These are the possible flag values for the table cell renderer.

// Only a single one of these values will be used; they are not ORed together. // These are mostly of interest if you are writing a new output format. const ( - TableAlignmentLeft = 1 << iota + TableAlignmentLeft CellAlignFlags = 1 << iota TableAlignmentRight TableAlignmentCenter = (TableAlignmentLeft | TableAlignmentRight) )