Asana Integeration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
276 B

package text
import "fmt"
const (
DataMention = `<a data-asana-gid="%s"/>`
)
// `<body>
// testing
// <a data-asana-gid="1199521781039350"/>
// <a data-asana-gid="1200773217477032"/>
// </body>`
func Mention(gid string) string {
return fmt.Sprintf(DataMention, gid)
}