mirror of
https://github.com/russross/blackfriday.git
synced 2024-03-22 13:40:34 +08:00
Add missing type to TableAlignment* constants
This commit is contained in:
parent
14a0c487b8
commit
627dc87cad
|
@ -86,7 +86,7 @@ type CellAlignFlags int
|
|||
// 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)
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user