Make isText private

This commit is contained in:
2024-10-16 18:31:24 +02:00
parent f8c36a7045
commit f11dee630d
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ type XHTMLText struct {
XHTMLDiv XHTMLDiv
}
func (x *XHTMLText) IsText() bool { return true }
func (x *XHTMLText) isText() bool { return true }
func (x *XHTMLText) Check() error {
if x.Type != "xhtml" {