Skip to content

Commit

Permalink
Add example files for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
andreyvit committed Jul 10, 2011
1 parent 04c5fb4 commit d916f7e
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 0 deletions.
Empty file added example/test_coffee.coffee
Empty file.
4 changes: 4 additions & 0 deletions example/test_haml.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
%html
%body
%p(lang="en" foo="xxxx") Hello
%z
3 changes: 3 additions & 0 deletions example/test_jade.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
html
body
p(x=2+2) Hello
12 changes: 12 additions & 0 deletions example/test_less.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

.foo() {
top: 2px;
}

.test {
.foo;
position: absolute;
left: 50%;
height: 40px;
cursor: pointer;
}
5 changes: 5 additions & 0 deletions example/test_sass.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
body
font-size: 14px

h1
font-size: 16px
7 changes: 7 additions & 0 deletions example/test_scss.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
body {
font-size: 14px;

h1 {
font-size: 16px;
}
}
7 changes: 7 additions & 0 deletions example/test_stylus.styl
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

.Q_barDropDown_tool
position absolute
top 2px
left 50%
height 40px
cursor pointer

0 comments on commit d916f7e

Please sign in to comment.