From 30aa3fd5d6b5abae75d45eacd45ff4a1d9452c75 Mon Sep 17 00:00:00 2001 From: Adam Ferguson Date: Thu, 16 May 2013 10:26:01 -0400 Subject: [PATCH 1/2] Add Jade and Scaml --- lib/linguist/languages.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 6b52b301..635816c3 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -630,6 +630,11 @@ JSON: searchable: false primary_extension: .json +Jade: + group: HTML + type: markup + primary_extension: .jade + Java: type: programming ace_mode: java @@ -1169,6 +1174,11 @@ Scala: color: "#7dd3b0" primary_extension: .scala +Scaml: + group: HTML + type: markup + primary_extension: .scaml + Scheme: type: programming color: "#1e4aec" From 89bc82d9df5e09f057f4bc341d0f0c0e2a3548ae Mon Sep 17 00:00:00 2001 From: Adam Ferguson Date: Thu, 16 May 2013 13:21:58 -0400 Subject: [PATCH 2/2] Add samples for Jade and Scaml --- samples/Jade/hello.jade | 3 +++ samples/Scaml/hello.scaml | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 samples/Jade/hello.jade create mode 100644 samples/Scaml/hello.scaml diff --git a/samples/Jade/hello.jade b/samples/Jade/hello.jade new file mode 100644 index 00000000..32c72739 --- /dev/null +++ b/samples/Jade/hello.jade @@ -0,0 +1,3 @@ +p. + Hello, + World! diff --git a/samples/Scaml/hello.scaml b/samples/Scaml/hello.scaml new file mode 100644 index 00000000..accbf543 --- /dev/null +++ b/samples/Scaml/hello.scaml @@ -0,0 +1,3 @@ +%p + Hello, + World!