summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrey Hunner <treyhunner@gmail.com>2012-06-23 16:07:26 -0700
committerTrey Hunner <treyhunner@gmail.com>2012-06-23 16:07:26 -0700
commit64ac37659fbd625572851681f9e253a4f51d5ebf (patch)
tree77f392b4edf358aff7492ace9a3fc00b038d68f8
parentc12bced9b7a3f2b840ee6769dd14baa1b853e271 (diff)
parent84fe8563b010dbe3ee9e2e4267d5697ca8b6fdcf (diff)
downloadpycco-64ac37659fbd625572851681f9e253a4f51d5ebf.tar.gz
Merge pull request #61 from kzfm/haskell-support
support Haskell
-rw-r--r--pycco/main.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pycco/main.py b/pycco/main.py
index 0e30ab6..65c7c35 100644
--- a/pycco/main.py
+++ b/pycco/main.py
@@ -303,6 +303,9 @@ languages = {
"multistart": "--[[", "multiend": "--]]"},
".erl": { "name": "erlang", "symbol": "%%" },
+
+ ".hs": { "name": "haskell", "symbol": "--",
+ "multistart": "{-", "multiend": "-}"},
}
# Build out the appropriate matchers and delimiters for each language.