about to remove debug statements

This commit is contained in:
James Ryland Miller 2015-10-29 21:56:00 -05:00
parent 32570bba60
commit ed5dedd2fa
1 changed files with 3 additions and 2 deletions

View File

@ -2,14 +2,15 @@ package termui
import (
"fmt" // for debugging; REMOVE ME BEFORE PULL REQUEST
"github.com/mitchellh/go-wordwrap" // LEFT UP TO PKG MAINTAINER TO DECIDE HOW TO VENDOR
"github.com/mitchellh/go-wordwrap" // LEFT UP TO PKG MAINTAINER TO DECIDE HOW TO VENDOR; is MIT LICENSED
"regexp"
"strings"
)
// TextBuilder is a minial interface to produce text []Cell using sepcific syntax (markdown).
// TextBuilder is a minimal interface to produce text []Cell using specific syntax (markdown).
type TextBuilder interface {
Build(s string, fg, bg Attribute) []Cell
BuildWrap(s string, fg, bg Attribute, wl uint) []Cell
}
// DefaultTxBuilder is set to be MarkdownTxBuilder.