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

3 years ago
  1. package text
  2. import "fmt"
  3. const (
  4. DataMention = `<a data-asana-gid="%s"/>`
  5. )
  6. // `<body>
  7. // testing
  8. // <a data-asana-gid="1199521781039350"/>
  9. // <a data-asana-gid="1200773217477032"/>
  10. // </body>`
  11. func Mention(gid string) string {
  12. return fmt.Sprintf(DataMention, gid)
  13. }