We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b6b3a1 commit 447313dCopy full SHA for 447313d
builder.go
@@ -88,6 +88,21 @@ func (builder *Builder) Restore() *Builder {
88
return builder.With(Restore)
89
}
90
91
+// Hide is a syntax for Hide.
92
+func (builder *Builder) Hide() *Builder {
93
+ return builder.With(Hide)
94
+}
95
+
96
+// Show is a syntax for Show.
97
+func (builder *Builder) Show() *Builder {
98
+ return builder.With(Show)
99
100
101
+// Report is a syntax for Report.
102
+func (builder *Builder) Report() *Builder {
103
+ return builder.With(Report)
104
105
106
// Bold is a syntax for Bold.
107
func (builder *Builder) Bold() *Builder {
108
return builder.With(Bold)
0 commit comments