summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/css.rb
Commit message (Collapse)AuthorAgeFilesLines
* fix CSS scanner for things like "nth-child(2n)"Kornelius Kalnbach2013-07-131-1/+1
|
* don't change value of objects you don't ownKornelius Kalnbach2013-07-121-1/+1
|
* fix another CSS empty token issueKornelius Kalnbach2013-06-231-2/+2
|
* avoid empty tokens in CSSKornelius Kalnbach2013-06-231-1/+1
|
* tweak CSS tag/id token kind patch from nopromptKornelius Kalnbach2013-06-111-2/+2
|
* Merge remote-tracking branch 'noprompt/master' into css-token-kindsKornelius Kalnbach2013-06-111-5/+5
|\ | | | | | | | | Conflicts: etc/todo/scanners/css.rb
| * use :tag instead of :type for identifiersJoel Holdbrooks2012-07-241-3/+3
| |
| * use "id" instead of "constant" for css idsJoel Holdbrooks2012-07-031-2/+2
| |
* | added Sass scanner (work in progress)Kornelius Kalnbach2013-03-111-17/+14
|/
* fix whitespace changesJoel Holdbrooks2012-01-201-38/+38
|
* begin/end with group :function instead of :stringJoel Holdbrooks2012-01-131-40/+40
|
* css scanner fixes; preparing 1.0.4Kornelius Kalnbach2011-11-021-7/+14
|
* Major rewrite of encoders to support IO output; fixed some minor scanner ↵Kornelius Kalnbach2011-08-191-27/+36
| | | | bugs; cleanups; dropped NitroXHTML scanner; improved tests
* Encoder refactoring to fix LOC and Statistic encodersmurphy2011-04-201-1/+1
|
* Speedup comment matching in CSS scanner.murphy2011-03-011-17/+8
|
* Cleanup CSS scanner.murphy2010-10-151-3/+2
|
* Direct Streaming! See #142 and Changes.textile.murphy2010-05-011-76/+60
|
* CSS Scanner: Adding support for CSS 3 functions and colors, changing ↵murphy2010-04-141-7/+5
| | | | highlighting of attrbiute selectors (closes #224).
* Cleanups for C, C++, CSS, Delphi, Groovy, Java, PHP, Python, RHTML, XML, and ↵murphy2010-03-261-5/+6
| | | | YAML scanners.
* Updated CSS scanner: element selectors are highlighted as :type.murphy2009-10-191-1/+9
|
* Fixed CSS scanner (closes #72).murphy2009-02-061-6/+28
| | | | | | | * handles url(...) outside of blocks * handles @media * handles [attribute=selectors] (too simple, added TODO)
* New: *YAML* (#53). Preparing for version 0.8.1.murphy2008-10-201-1/+0
| | | | | | | | | | | | | | * Based on the YAML scanner from Jamis Buck's Syntax lib. * Some YAML examples from Ruby gems. * Doesn't handle string yet; alpha state. More changes: * coderay_suite: new parameter "fast" makes testing faster (for development). * Changed the title of HTML page output (Page Encoder). * FileType: Added new file types. * cYcnus style: simplified some token group styles. * Cleanup in CSS and HTML Scanners.
* New: *CSS Scanner* (closes #29).murphy2008-09-181-0/+181
* Based on Stefan Walk's implementation, with fixes, enhancements and speedups. * It seems to be fairly fast and highlights nicely. * I added the styles for Ignis Draconis, S5, and YUI as example code for testing. More changes: * Added three new token classes, :important, :pseudo_class, and :value, along with CSS styles.