mirror of
https://github.com/KevinMidboe/linguist.git
synced 2026-01-27 11:45:33 +00:00
Fix Haml and Sass grouping and highlighting
This commit is contained in:
3
test/fixtures/hello.haml
vendored
Normal file
3
test/fixtures/hello.haml
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
%p
|
||||
Hello,
|
||||
World!
|
||||
11
test/fixtures/screen.sass
vendored
Normal file
11
test/fixtures/screen.sass
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
$blue: #3bbfce
|
||||
$margin: 16px
|
||||
|
||||
.content-navigation
|
||||
border-color: $blue
|
||||
color: darken($blue, 9%)
|
||||
|
||||
.border
|
||||
padding: $margin / 2
|
||||
margin: $margin / 2
|
||||
border-color: $blue
|
||||
14
test/fixtures/screen.scss
vendored
Normal file
14
test/fixtures/screen.scss
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
$blue: #3bbfce;
|
||||
$margin: 16px;
|
||||
|
||||
.content-navigation {
|
||||
border-color: $blue;
|
||||
color:
|
||||
darken($blue, 9%);
|
||||
}
|
||||
|
||||
.border {
|
||||
padding: $margin / 2;
|
||||
margin: $margin / 2;
|
||||
border-color: $blue;
|
||||
}
|
||||
Reference in New Issue
Block a user