vuepressの使い方
これからブログ更新をするにあたって、使いそうな記法を適当に書いておくよ。
# TOC
# 脚注
Here is a footnote reference,[1] and another.[2]
# 画像
# テーブル
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
# 絵文字
🎉 💯
# コード
export default {
data () {
return {
msg: 'Highlighted!'
}
}
}
1
2
3
4
5
6
7
2
3
4
5
6
7
set savefolder to alias "Macintosh HD:Users:yusuke:Desktop:alive:"
tell application "Safari"
set urlList to URL of every tab of window 1
set titleList to name of every tab of window 1
set windowID to window 1
end tell
tell application "Safari"
tell window 1
set current tab to tab 1
end tell
end tell
repeat with i from 1 to number of items in urlList
set this_url to item i of urlList
set this_title to item i of titleList
tell application "Finder"
make new internet location file at savefolder to this_url with properties {name:this_title}
end tell
(* タブを閉じる
tell application "Safari"
close windowID's tab 1
end tell
*)
end repeat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# kdb
Ctrlを押下してください。
# 警告など
INFO
This is a tip
# ブログカード
Macの手書き説明書 | 移行作業中 70%くらい
移行作業中 70%くらい
# インポート
const chin = 'hoge'
tell application "Finder"
display dialog "hoge"
end tell
1
2
2