goMuffin/utils/inlineCode.go

5 lines
78 B
Go

package utils
func InlineCode(str string) string {
return "`" + str + "`"
}