Merge pull request #99 from jonrkarr/patch-2

Add markers for multi-line Python comments
This commit is contained in:
Alastair Mooney
2022-01-20 13:19:41 +00:00
committed by GitHub
4 changed files with 52 additions and 5 deletions

View File

@@ -5,6 +5,20 @@
{
"type": "line",
"pattern": "#"
},
{
"type": "block",
"pattern": {
"start": "'''",
"end": "'''"
}
},
{
"type": "block",
"pattern": {
"start": "\"\"\"",
"end": "\"\"\""
}
}
]
},