5 lines
78 B
Go
5 lines
78 B
Go
package utils
|
|
|
|
func InlineCode(str string) string {
|
|
return "`" + str + "`"
|
|
}
|