vimdeck-without-ascii-art 0.2.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,95 @@
1
+ _________ ___ ____ ___ ______ ___
2
+ / ___/ __ \/ _ \/ __/ / _ \_ __/ |_ |
3
+ / /__/ /_/ / // / _/ / ___// / / __/
4
+ \___/\____/____/___/ /_/ /_/ /____/
5
+
6
+ (function( window, $, undefined ) {
7
+ $( '.hello' ).on( 'click', function sayHello() {
8
+ alert( 'Why, hello there!' );
9
+ });
10
+ })( window, jQuery );
11
+
12
+ <body>
13
+ <a href="#" class="hello">Hello!</a>
14
+ </body>
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+ slide 017
@@ -0,0 +1,95 @@
1
+ _________ ___ ____ ___ ______ ___
2
+ / ___/ __ \/ _ \/ __/ / _ \_ __/ |_ |
3
+ / /__/ /_/ / // / _/ / ___// / / __/
4
+ \___/\____/____/___/ /_/ /_/ /____/
5
+
6
+ (function( window, $, undefined ) {
7
+ $( '.hello' ).on( 'click', function sayHello() {
8
+ alert( 'Why, hello there!' );
9
+ });
10
+ })( window, jQuery );
11
+
12
+ <body>
13
+ <a href="#" class="hello">Hello!</a>
14
+ </body>
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+ slide 018
@@ -0,0 +1,87 @@
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
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+ slide 019
data/slides.md ADDED
@@ -0,0 +1,233 @@
1
+ # VIMDECK
2
+
3
+ ## PURE AWESOME
4
+
5
+
6
+ # VIM ROCKS!
7
+
8
+ ![](img/vim.png)
9
+
10
+
11
+ ## PARAGRAPHS
12
+
13
+ This is a `paragraph` (plain text)
14
+
15
+ This is another paragraph
16
+
17
+
18
+ ## NUMBERED LIST
19
+
20
+ 1. This _is_ how a *numbered* list
21
+ 2. Looks in **vimdeck**
22
+ 3. What do ***you*** think?
23
+
24
+
25
+ # BULLETS
26
+
27
+ • First{~
28
+ • Second
29
+ • Third~}
30
+
31
+
32
+ # BULLETS
33
+
34
+ {~• First~}
35
+ • Second{~
36
+ • Third~}
37
+
38
+
39
+ # BULLETS
40
+
41
+ {~• First
42
+ • Second~}
43
+ • Third
44
+
45
+
46
+ ## CODE
47
+
48
+ ```ruby
49
+ module Parts
50
+ class foo
51
+ def slide
52
+ "of a"
53
+ end
54
+
55
+ def can
56
+ highlight = "vimdeck"
57
+ end
58
+ end
59
+ end
60
+ ```
61
+
62
+
63
+ ## CODE
64
+
65
+ ```ruby
66
+ {~module Parts
67
+ class foo
68
+ def slide
69
+ "of a"
70
+ end
71
+
72
+ def can
73
+ highlight = ~}"vimdeck"{~
74
+ end
75
+ end
76
+ end~}
77
+ ```
78
+
79
+
80
+ ## CODE
81
+
82
+ ```ruby
83
+ {~module Parts
84
+ class foo
85
+ def slide
86
+ "of a"
87
+ end
88
+
89
+ def~} can
90
+ {~highlight = "vimdeck"
91
+ end
92
+ end
93
+ end~}
94
+ ```
95
+
96
+
97
+ ## CODE
98
+
99
+ ```ruby
100
+ {~module Parts
101
+ class foo
102
+ def slide
103
+ "of a"
104
+ end
105
+
106
+ def can~}
107
+ highlight {~= "vimdeck"
108
+ end
109
+ end
110
+ end~}
111
+ ```
112
+
113
+
114
+ ## CODE
115
+
116
+ ```ruby
117
+ {~module~} Parts
118
+ {~class foo
119
+ def slide
120
+ "of a"
121
+ end
122
+
123
+ def can
124
+ highlight = "vimdeck"
125
+ end
126
+ end
127
+ end~}
128
+ ```
129
+
130
+
131
+ ## CODE
132
+
133
+ ```ruby
134
+ {~module Parts
135
+ class foo
136
+ def slide~}
137
+ "of a"
138
+ {~end
139
+
140
+ def can
141
+ highlight = "vimdeck"
142
+ end
143
+ end
144
+ end~}
145
+ ```
146
+
147
+
148
+ ## CODE
149
+
150
+ ```ruby
151
+ {~module Parts
152
+ class foo
153
+ def~} slide
154
+ {~"of a"
155
+ end
156
+
157
+ def can
158
+ highlight = "vimdeck"
159
+ end
160
+ end
161
+ end~}
162
+ ```
163
+
164
+
165
+ ## CODE PT 2
166
+
167
+ ```javascript
168
+ (function( window, $, undefined ) {
169
+ $( '.hello' ).on( 'click', function sayHello() {
170
+ alert( 'Why, hello there!' );
171
+ });
172
+ })( window, jQuery );
173
+ ```
174
+
175
+ ```html
176
+ <body>
177
+ <a href="#" class="hello">Hello!</a>
178
+ </body>
179
+ ```
180
+
181
+
182
+ ## CODE PT 2
183
+
184
+ ```javascript
185
+ {~(function( window, $, undefined ) {
186
+ $( '.hello' ).on( 'click', function sayHello() {~}
187
+ alert( 'Why, hello there!' );{~
188
+ });
189
+ })( window, jQuery );~}
190
+ ```
191
+
192
+ ```html
193
+ <body>
194
+ <a href="#" class="hello">Hello!</a>
195
+ </body>
196
+ ```
197
+
198
+
199
+ ## CODE PT 2
200
+
201
+ ```javascript
202
+ (function( window, $, undefined ) {
203
+ $( '.hello' ).on( 'click', function sayHello() {
204
+ alert( 'Why, hello there!' );
205
+ });
206
+ })( window, jQuery );
207
+ ```
208
+
209
+ ```html
210
+ {~<body>~}
211
+ <a href="#" class="hello">Hello!</a>
212
+ {~</body>~}
213
+ ```
214
+
215
+
216
+ ## CODE PT 2
217
+
218
+ ```javascript
219
+ {~(function( window, $, undefined ) {
220
+ $( '.hello' ).on( 'click', function sayHello() {~}
221
+ alert( 'Why, hello there!' );{~
222
+ });
223
+ })( window, jQuery );
224
+ ```
225
+
226
+ ```html
227
+ <body>
228
+ <a href="#" class="hello">Hello!</a>
229
+ </body>~}
230
+ ```
231
+
232
+
233
+ # The End!