Ted Nyman
ee840321d1
Add test_data
2013-09-09 00:39:34 -07:00
Ted Nyman
0cbc44677c
Merge pull request #606 from kethomassen/patch-1
...
Change YAML type to data
2013-09-09 00:38:04 -07:00
kethomassen
a9b944ac36
Make markup tests pass
...
Yaml ain't Markup Language!
2013-09-09 16:44:00 +10:00
Ted Nyman
e005893d4c
Syntax
2013-08-14 08:37:03 -07:00
Ted Nyman
6c74d854ec
2.9.3, update samples, update test
2013-08-14 08:35:53 -07:00
Tobias Bieniek
4ae5dd360f
Added .jinja extension to HTML+Django language
2013-05-27 22:05:17 +02:00
William Roe
846e84fc8c
Recognise riemann.config files as Clojure files
2013-05-13 18:25:27 +01:00
Romain Deltour
7ca58f8dd9
Remove XProc and XSLT from the group XML
2013-03-15 12:40:59 +01:00
Pascal Borreli
70eafb2ffc
Fixed typos
2013-03-03 21:26:31 +00:00
PulsarBlow
dc9ad22ec4
TypeScript language support
...
Signed-off-by: PulsarBlow <pulsarblow@gmail.com >
2013-02-23 23:40:40 +01:00
Greg Hendershott
0b2465482a
Update test: Racket language uses Racket lexer.
...
This is https://github.com/greghendershott/linguist/pull/1 from @tnm.
That pull request is onto my master branch, not my `racket-lexer`
topic branch. If there is a way to accept the pull request onto my
topic branch, I don't have time to figure it out right now. As a
result I'm making my own commit.
2013-01-02 07:46:58 -05:00
Mislav Marohnić
720914b290
add filename tests for shell config files
2012-12-06 23:54:22 +01:00
Andy Li
50ecb63058
haXe is now "Haxe"
...
According to https://groups.google.com/forum/#!topic/haxelang/O7PB-ZrX4i4/discussion
The lexer in Pygments is not renamed yet, so just stay as is at the moment.
2012-12-06 23:42:04 +01:00
Mislav Marohnić
ae753e6e88
add Nginx language
2012-12-06 23:25:54 +01:00
Mislav Marohnić
04a2845e91
add ApacheConf language
...
Recognizes httpd/apache2.conf and .htaccess files
2012-12-06 23:25:29 +01:00
Mislav Marohnić
acb20d95ca
"coffee-script" ☞ CoffeeScript
2012-12-06 23:04:53 +01:00
Mislav Marohnić
d3ebe1844d
add HTTP language
...
Useful for `curl -i` dumps. Had to add primary_extension although this
data is usually not saved in files, but shown as code blocks.
2012-12-04 16:26:11 +01:00
Mislav Marohnić
fc8492e8f7
"yml" ☞ YAML
2012-12-04 16:11:52 +01:00
Mislav Marohnić
1dfb44cff7
"obj-c/objc" ☞ Objective-C
2012-12-04 16:11:51 +01:00
Mislav Marohnić
9b97d3ac8a
"erb" ☞ RHTML
2012-12-04 16:11:51 +01:00
Mislav Marohnić
26e78c0c1b
"xhtml" ☞ HTML
2012-12-04 16:11:51 +01:00
Joshua Peek
d92d208a45
Fix tests for pygments.rb 0.3.x
2012-10-07 15:39:02 -05:00
Joshua Peek
ebd6077cd7
Add wrap flag to text languages
2012-10-07 15:34:13 -05:00
Joshua Peek
96267e8696
Sort test assertion
2012-08-03 15:11:30 -05:00
Joshua Peek
16a67cb852
Move shebang detection into classifier
...
Fixes #203
2012-08-03 15:07:36 -05:00
Joshua Peek
fbbaff09cd
Stop treating text as a language
2012-08-03 13:55:51 -05:00
Joshua Peek
6014bd015e
Change find_by_filename api to return all matching languages
2012-08-03 13:53:12 -05:00
Joshua Peek
059f661eb6
Rename Max/MSP to Max
2012-07-24 11:03:09 -05:00
Joshua Peek
144655f2c5
Require explicit primary_extension
2012-07-20 16:54:49 -05:00
Joshua Peek
a708993388
Ensure all languages have unique primary extensions
2012-06-07 10:29:19 -05:00
Joshua Peek
2cbf428176
Use XSLT lexer
2012-05-09 10:41:11 -05:00
Daniel Micay
be42a8411b
add detection for Arch Linux PKGBUILDs
2012-05-08 07:39:48 -04:00
Joshua Peek
aa7c8497b1
Merge pull request #151 from aseemk/streamlinejs-support
...
Add ._js & ._coffee extensions for Streamline.js.
2012-05-07 19:44:14 -07:00
Joshua Peek
c3d6fc5af8
Colors!
2012-04-19 17:25:16 -05:00
Ilya Grigorik
a3dc9fb138
add detection for Dart
2012-04-09 14:38:43 -07:00
Aseem Kishore
17adccc844
Regression fix: ensure .coffee is primary ext.
...
(The primary extension by default is the first extension, but the extensions
need to be in alphabetical order, and _coffee comes before coffee.)
2012-04-03 14:56:11 -04:00
Aseem Kishore
54e81dd8fb
Add ._js & ._coffee extensions for Streamline.js.
...
Streamline.js by Bruno Jouhier (@Sage) is a library/tool that lets you write
synchronous-looking JavaScript/CoffeeScript, and have it compile to Node-style
asynchronous JavasScript/CoffeeScript. (It's amazing and super elegant.)
https://github.com/Sage/streamlinejs
From the start, Streamline was designed to be exactly JavaScript/CoffeeScript,
so that it works with existing editors and tools. No new keywords or syntax --
it simply reserves `_` as a function parameter name.
Streamline files have thus kept `.js` and `.coffee` as extensions, so that no
changes need to be made to tools; Streamline has just used the convention of
ending file basenames with `_`, like `foo_.js` or `foo_.coffee`.
Unfortunately, to get the most optimal Node.js integration, with on-the-fly
compilation (like CoffeeScript), files now need to have their own extension.
So Bruno has decided to make `._js` and `._coffee` the extensions of choice.
The good news is that the language is still exactly JavaScript/CoffeeScript;
it's only the extension that's changed. It's simple to add these extensions
into our editors, but I'm wondering if we can add this to GitHub too. =)
This change is super simple and shouldn't affect any other language, so I hope
you guys are open to it. Thanks for your consideration!
2012-04-02 19:56:28 -04:00
Joshua Peek
19f2ee40a5
New lexers in 1.5
2012-03-28 11:40:14 -05:00
Joshua Peek
791761b19f
kt extension is real now
2012-03-28 11:25:36 -05:00
Joshua Peek
9d983b64b0
Fix tests
2012-03-28 11:03:22 -05:00
Joshua Peek
3b7b2020d2
State Ace compatible languages
2012-03-23 13:50:29 -05:00
Abe Voelker
22db59d8c0
Improve .cls language detection
2012-03-21 11:21:55 -05:00
Joshua Peek
087205893f
Fix name escaping
2012-03-19 09:35:46 -05:00
Abe Voelker
d32c9e88b4
Add support for OpenEdge ABL language
2012-03-05 08:58:19 -06:00
Joshua Peek
cc7205b9aa
Merge pull request #122 from rankida/detect-powershell
...
Added Windows Powershell detection
2012-03-05 06:04:36 -08:00
Abe Voelker
daef609f5f
Add detection for the Coq language - fixes #116
2012-02-17 10:50:21 -06:00
David Rankin
06395fa816
Added support for Powershell files (.ps1 and .psm1) using a 'Text only' lexer
2012-02-15 19:42:53 +00:00
Timur Batyrshin
7b3750bcc5
Added detection for Puppet manifests ( http://docs.puppetlabs.com/ )
2012-01-16 15:47:11 +04:00
Joshua Peek
e4fe1d17e7
Add tests for Perl and Turning detection
2011-11-21 10:42:39 -06:00
Humza
c73689ee0c
Add missing alias tests
2011-11-06 14:18:30 -05:00