- 小文字に変換される
- 空白は
-
に変換される a-zA-Z-_
はそのままÀ
より前の半角記号はほとんど削除される- ただし
ªµº
は残る
- ただし
- ソフトハイフンが挙動不審
- 残りはUTF-8でURLエンコード
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
$searchbox: ( | |
input: ( | |
fg: black, | |
bg: white, | |
border: lighten(black, 25%); | |
--focus: ( | |
border: cyan, | |
) | |
); |
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
'use strcit'; | |
module.exports = function (grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json') | |
}); | |
grunt.registerTask('edit', function () { | |
grunt.util.spawn({ | |
cmd: 'gvim', |
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
.test-foo-bar { | |
content: "foo_bar"; } | |
.test-foo_bar { | |
content: "foo_bar"; } |
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
'use strcit'; | |
var path = require('path'); | |
module.exports = function (grunt) { | |
var config = { | |
pkg: grunt.file.readJSON('package.json') | |
}; | |
grunt.file.expand('.grunt/config/*.json').forEach(function (file) { |
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
/* Feedly */ | |
#feedlyCenter * { | |
font-family: "Segoe UI", sans-serif !important; | |
} | |
#feedlyCenter code, | |
#feedlyCenter pre { | |
font-family: "Consolas", monospace !important; | |
} |
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
" !optional | |
syn match sassOptional "!optional\>" contained | |
hi def link sassOptional cssImportant | |
" !global | |
syn match sassGlobal "!global\>" contained | |
hi def link sassGlobal cssImportant | |
" Functions | |
syn match sassFunction "\<\%(invert\)\>(\@=" contained |
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
.foo { | |
color: red; } | |
.foo__bar { | |
color: green; } | |
.foo--baz { | |
color: blue; } |
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
.test { | |
color: green; } | |
.test-global { | |
color: blue; } |
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
Error detected while processing **************************: | |
line 1: | |
E128: Function name must start with a capital or "s:": test:func() | |
This is a test. | |
line 3: |
OlderNewer