Skip to content

Commit 5418695

Browse files
committed
1 parent f0a3184 commit 5418695

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

snippets/bbcode.snippets

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# https://bbs.archlinux.org/help.php#bbcode
2+
3+
snippet b "bold"
4+
[b]$0[/b]
5+
snippet u "underlined"
6+
[u]$0[/u]
7+
snippet i "italic"
8+
[i]$0[/i]
9+
snippet s "strike through"
10+
[s]$0[/s]
11+
snippet del "deleted"
12+
[del]$0[/del]
13+
snippet ins "inserted"
14+
[ins]$0[/ins]
15+
snippet em "emphasised"
16+
[em]$0[/em]
17+
snippet color "color"
18+
[color=$1]$0[/color]
19+
snippet h "heading"
20+
[h]$0[/h]
21+
snippet url "url"
22+
[url=$1]$0[/url]
23+
snippet email "email"
24+
[email=$1]$0[/email]
25+
snippet topic "topic with id"
26+
[topic=$1]$0[/topic]
27+
snippet post "post with id"
28+
[post=$1]$0[/post]
29+
snippet forum "forum with id"
30+
[forum=$1]$0[/forum]
31+
snippet user "user with id"
32+
[user=$1]$0[/user]
33+
snippet img "image"
34+
[img=$1]$0[/img]
35+
snippet quote "quote"
36+
[quote=$1]$0[/quote]
37+
snippet code "code"
38+
[code]$0[/code]
39+
snippet list "list"
40+
[list=$1]$0[/list]
41+
snippet * "*"
42+
[*]$0[/*]

0 commit comments

Comments
 (0)