gfm.cson 866 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. '.source.gfm':
  2. 'bold text':
  3. 'prefix': 'b'
  4. 'body': '**$1**$0'
  5. 'code':
  6. 'prefix': 'code'
  7. 'body': """
  8. ```$1
  9. $2
  10. ```$0
  11. """
  12. 'italic text':
  13. 'prefix': 'i'
  14. 'body': '*$1*$0'
  15. 'embedded image':
  16. 'prefix': 'img'
  17. 'body': '![$1]($2)$0'
  18. 'link':
  19. 'prefix': 'l'
  20. 'body': '[$1]($2)$0'
  21. 'bullet point':
  22. 'prefix': 'p'
  23. 'body': '- $1'
  24. 'reference':
  25. 'prefix': 'ref'
  26. 'body': '[${1:id}]: ${2:url}${3: "${4:title}"}$0'
  27. 'reference image':
  28. 'prefix': 'rimg'
  29. 'body': '![$1][$2]$0'
  30. 'reference link':
  31. 'prefix': 'rl'
  32. 'body': '[$1][$2]$0'
  33. 'todo':
  34. 'prefix': 't'
  35. 'body': '- [ ] $1'
  36. 'table':
  37. 'prefix': 'table'
  38. 'body': """
  39. | ${1:Header One } | ${2:Header Two } |
  40. | :------------- | :------------- |
  41. | ${3:Item One } | ${4:Item Two } |$0
  42. """