Make isText private
This commit is contained in:
parent
f8c36a7045
commit
f11dee630d
@ -8,7 +8,7 @@ type PlainText struct {
|
|||||||
Text string `xml:"text"`
|
Text string `xml:"text"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PlainText) IsText() bool { return true }
|
func (p *PlainText) isText() bool { return true }
|
||||||
|
|
||||||
func (p *PlainText) Check() error {
|
func (p *PlainText) Check() error {
|
||||||
if p.Type != "" && p.Type != "text" && p.Type != "html" {
|
if p.Type != "" && p.Type != "text" && p.Type != "html" {
|
||||||
|
2
text.go
2
text.go
@ -6,8 +6,8 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Text interface {
|
type Text interface {
|
||||||
|
isText() bool
|
||||||
Check() error
|
Check() error
|
||||||
IsText() bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewText(textType, content string) (Text, error) {
|
func NewText(textType, content string) (Text, error) {
|
||||||
|
@ -17,7 +17,7 @@ type XHTMLText struct {
|
|||||||
XHTMLDiv XHTMLDiv
|
XHTMLDiv XHTMLDiv
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *XHTMLText) IsText() bool { return true }
|
func (x *XHTMLText) isText() bool { return true }
|
||||||
|
|
||||||
func (x *XHTMLText) Check() error {
|
func (x *XHTMLText) Check() error {
|
||||||
if x.Type != "xhtml" {
|
if x.Type != "xhtml" {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user