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:
+15
@@ -0,0 +1,15 @@
|
||||
package tml
|
||||
|
||||
import (
|
||||
"strings"
|
||||
"bytes"
|
||||
)
|
||||
|
||||
// Parse converts the input string (containing TML tags) into a string containing ANSI escape code sequences for output to the terminal.
|
||||
func Parse(input string) (string, error) {
|
||||
output := bytes.NewBufferString("")
|
||||
if err := NewParser(output).Parse(strings.NewReader(input)); err != nil {
|
||||
return "", err
|
||||
}
|
||||
return output.String(), nil
|
||||
}
|
||||
Reference in New Issue
Block a user