github.com/TaceyWong/ctools@v0.1.1-0.20201221084458-4d7a8190b2ac/tools/validators/html_validator.go (about)

     1  package validators
     2  
     3  import "github.com/urfave/cli/v2"
     4  
     5  var HTMLValidCMD = cli.Command{
     6  	Name:     "html_valid",
     7  	Aliases:  []string{"hv"},
     8  	Usage:    "验证HTML文本是否符合&兼容w3c标注",
     9  	Category: "验证器",
    10  	Action: func(c *cli.Context) error {
    11  		return nil
    12  	},
    13  }