summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlec Perkins <alecperkins@gmail.com>2011-07-15 12:02:12 -0400
committerTrey Hunner <treyhunner@gmail.com>2012-03-31 11:30:40 -0700
commit42ba57ee19d9f28f05845911b589105d85e59016 (patch)
treeb9a83e2fe8f1b5d2b0242e761bbd2a5a334e9727
parentf85ead9356087cdf2f52526dbef25eaa4f1e8e38 (diff)
downloadpycco-42ba57ee19d9f28f05845911b589105d85e59016.tar.gz
Added support for CoffeeScript's multiline comments
-rw-r--r--pycco/main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pycco/main.py b/pycco/main.py
index 8a3fba2..cdbb454 100644
--- a/pycco/main.py
+++ b/pycco/main.py
@@ -276,7 +276,8 @@ from pygments import lexers, formatters
# the name of the Pygments lexer and the symbol that indicates a comment. To
# add another language to Pycco's repertoire, add it here.
languages = {
- ".coffee": { "name": "coffee-script", "symbol": "#" },
+ ".coffee": { "name": "coffee-script", "symbol": "#",
+ "multistart": '###', "multiend": '###' },
".pl": { "name": "perl", "symbol": "#" },