From 42ba57ee19d9f28f05845911b589105d85e59016 Mon Sep 17 00:00:00 2001 From: Alec Perkins Date: Fri, 15 Jul 2011 12:02:12 -0400 Subject: Added support for CoffeeScript's multiline comments --- pycco/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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": "#" }, -- cgit v1.2.1