{
  "name": "Demo: Hashtags & Mentions",
  "description": "A simple demonstration syntax that highlights Twitter-style #hashtags and @mentions in the text.",
  "author": "Agile Tortoise, Inc.",
  "sampleText": "This sentence contains #hashtags and @mentions. #drafts #syntax-demo",
  "scopeName": "text.rainbow",
  "listCompletionDefinitions": [
  ],
  "rangeExtensionType": {
    "default": "lineExtended"
  },
  "listCompletion": "none",
  "fileExtensions": [
  ],
  "patterns": [
    {
      "match": "(\\B#\\w[\\w-]+)",
      "exclusive": true,
      "comment": "Match #hashtags",
      "captures": {
        "1": {
          "scope": "text.bold,color.blue"
        }
      }
    },
    {
      "match": "(\\B@\\w[\\w-]+)",
      "exclusive": true,
      "comment": "Match @mentions",
      "captures": {
        "1": {
          "scope": "text.bold,color.green"
        }
      }
    }
  ],
  "navigationPatterns": [
  ],
  "indentationPatterns": [
  ],
  "taskMarkDefinitions": [
  ]
}