Merge pull request #1188 from kaendfinger/master

Groovy: Add .gvy, .grt, and .gtpl to the list of extensions
This commit is contained in:
Arfon Smith
2014-05-30 15:58:59 -05:00
4 changed files with 23 additions and 0 deletions

View File

@@ -820,6 +820,9 @@ Groovy:
color: "#e69f56"
extensions:
- .groovy
- .grt
- .gtpl
- .gvy
interpreters:
- groovy

View File

@@ -0,0 +1,2 @@
#!/usr/bin/env groovy
println "Hello World"

View File

@@ -0,0 +1,9 @@
html {
head {
component "bootstrap"
title "Bootstrap Template"
}
html {
}
}

View File

@@ -0,0 +1,9 @@
html {
head {
title "Example Template"
}
body {
p "This is a quick template example"
}
}