summaryrefslogtreecommitdiffstats
path: root/vendor/gitlab.com/golang-commonmark/markdown/align.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gitlab.com/golang-commonmark/markdown/align.go')
-rw-r--r--vendor/gitlab.com/golang-commonmark/markdown/align.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/gitlab.com/golang-commonmark/markdown/align.go b/vendor/gitlab.com/golang-commonmark/markdown/align.go
deleted file mode 100644
index bcb63600..00000000
--- a/vendor/gitlab.com/golang-commonmark/markdown/align.go
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2015 The Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package markdown
-
-type Align byte
-
-const (
- AlignNone = iota
- AlignLeft
- AlignCenter
- AlignRight
-)
-
-func (a Align) String() string {
- switch a {
- case AlignLeft:
- return "left"
- case AlignCenter:
- return "center"
- case AlignRight:
- return "right"
- }
- return ""
-}