This file contains hidden or 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
@mixin heading-counter($start-level: 2, $glue: '-', $nocount: '.nocount', $end: '. ') { | |
counter-reset: h#{$start-level}; | |
@for $i from $start-level through 5 { | |
h#{$i} { | |
counter-reset: h#{$i + 1}; | |
} | |
} | |
@for $i from $start-level through 6 { |
This file contains hidden or 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
' | |
' [概要] | |
' ドキュメント下にある設定ファイル・フォルダを一箇所にまとめて管理できるようにするスクリプトです。 | |
' このスクリプトと同階層の設定ファイル・フォルダのハードリンク・ジャンクションを作成してドキュメント下に配置、隠しファイル化します。 | |
' | |
' [使い方] | |
' 1. "%USERPROFILE%\Documents\settings" あたりに setup.vbs を配置する。 | |
' 2. ドキュメント下にある設定ファイル・フォルダを setup.vbs と同フォルダに移動させる。 | |
' 3. setup.vbs を実行。 | |
' |
NewerOlder