all repos — grayfriday @ 627dc87cadeec7f786e528f4f9ff89b88dbb1e9d

blackfriday fork with a few changes

Add missing type to TableAlignment* constants
Pierre Neidhardt ambrevar@gmail.com
Sun, 09 Oct 2016 08:43:40 +0530
commit

627dc87cadeec7f786e528f4f9ff89b88dbb1e9d

parent

14a0c487b886d6ec301a6ae53e15e489e91cde8d

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) )