-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
132 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
section "spreadsheet ref" | ||
"Functions that mutate refed spreadsheets" | ||
{ | ||
|
||
group "ref" "" | ||
{ { block } } | ||
{ | ||
equal { | ||
spreadsheet { "a" "b" } { 1 10 2 20 3 30 } |is-ref | ||
} false | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
/*! Color themes for Google Code Prettify | MIT License | github.com/jmblog/color-themes-for-google-code-prettify */ | ||
.prettyprint { | ||
background: #f4f3ec; | ||
font-family: Menlo, "Bitstream Vera Sans Mono", "DejaVu Sans Mono", Monaco, Consolas, monospace; | ||
border: 0 !important; | ||
} | ||
|
||
.pln { | ||
color: #22221b; | ||
} | ||
|
||
/* Specify class=linenums on a pre to get line numbering */ | ||
ol.linenums { | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
color: #878573; | ||
} | ||
|
||
li.L0, | ||
li.L1, | ||
li.L2, | ||
li.L3, | ||
li.L4, | ||
li.L5, | ||
li.L6, | ||
li.L7, | ||
li.L8, | ||
li.L9 { | ||
padding-left: 1em; | ||
background-color: #f4f3ec; | ||
list-style-type: decimal; | ||
} | ||
|
||
@media screen { | ||
|
||
/* string content */ | ||
|
||
.str { | ||
color: #7d9726; | ||
} | ||
|
||
/* keyword */ | ||
|
||
.kwd { | ||
color: #5f9182; | ||
} | ||
|
||
/* comment */ | ||
|
||
.com { | ||
color: #878573; | ||
} | ||
|
||
/* type name */ | ||
|
||
.typ { | ||
color: #36a166; | ||
} | ||
|
||
/* literal value */ | ||
|
||
.lit { | ||
color: #ae7313; | ||
} | ||
|
||
/* punctuation */ | ||
|
||
.pun { | ||
color: #22221b; | ||
} | ||
|
||
/* lisp open bracket */ | ||
|
||
.opn { | ||
color: #22221b; | ||
} | ||
|
||
/* lisp close bracket */ | ||
|
||
.clo { | ||
color: #22221b; | ||
} | ||
|
||
/* markup tag name */ | ||
|
||
.tag { | ||
color: #ba6236; | ||
} | ||
|
||
/* markup attribute name */ | ||
|
||
.atn { | ||
color: #ae7313; | ||
} | ||
|
||
/* markup attribute value */ | ||
|
||
.atv { | ||
color: #5b9d48; | ||
} | ||
|
||
/* declaration */ | ||
|
||
.dec { | ||
color: #ae7313; | ||
} | ||
|
||
/* variable name */ | ||
|
||
.var { | ||
color: #ba6236; | ||
} | ||
|
||
/* function name */ | ||
|
||
.fun { | ||
color: #36a166; | ||
} | ||
} |