Create new type and remove un-used code
Create Release & Upload Assets / Upload Assets To Gitea w/ goreleaser (push) Failing after 11s
Create Release & Upload Assets / Upload Assets To Gitea w/ goreleaser (push) Failing after 11s
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
package tml
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
)
|
||||
|
||||
// Printf works like fmt.Printf, but adds the option of using tags to apply colour or text formatting to the written text. For example "<red>some red text</red>".
|
||||
// A full list of tags is available here: https://github.com/liamg/tml
|
||||
func Printf(input string, a ...interface{}) error {
|
||||
return Fprintf(os.Stdout, input, a...)
|
||||
}
|
||||
|
||||
func Fprintf(w io.Writer, input string, a ...interface{}) error {
|
||||
format, err := Parse(input)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
_, err = fmt.Fprintf(w, format, a...)
|
||||
return err
|
||||
}
|
||||
Reference in New Issue
Block a user