markdown-ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.travis.yml +3 -0
  4. data/CODE_OF_CONDUCT.md +13 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +19 -0
  8. data/Rakefile +10 -0
  9. data/bin/console +14 -0
  10. data/bin/setup +7 -0
  11. data/exe/markdown-ui +37 -0
  12. data/lib/markdown-ui.rb +130 -0
  13. data/lib/markdown-ui/button/animated.rb +22 -0
  14. data/lib/markdown-ui/button/basic.rb +17 -0
  15. data/lib/markdown-ui/button/custom.rb +20 -0
  16. data/lib/markdown-ui/button/element.rb +59 -0
  17. data/lib/markdown-ui/button/focusable.rb +23 -0
  18. data/lib/markdown-ui/button/group/buttons/custom.rb +21 -0
  19. data/lib/markdown-ui/button/group/buttons/element.rb +28 -0
  20. data/lib/markdown-ui/button/group/buttons/icon.rb +19 -0
  21. data/lib/markdown-ui/button/group/buttons/standard.rb +19 -0
  22. data/lib/markdown-ui/button/icon.rb +17 -0
  23. data/lib/markdown-ui/button/labeled_icon.rb +23 -0
  24. data/lib/markdown-ui/button/standard.rb +17 -0
  25. data/lib/markdown-ui/container/alignment/center.rb +19 -0
  26. data/lib/markdown-ui/container/alignment/left.rb +19 -0
  27. data/lib/markdown-ui/container/alignment/right.rb +19 -0
  28. data/lib/markdown-ui/container/custom.rb +17 -0
  29. data/lib/markdown-ui/container/element.rb +38 -0
  30. data/lib/markdown-ui/container/standard.rb +17 -0
  31. data/lib/markdown-ui/container/text.rb +17 -0
  32. data/lib/markdown-ui/content/custom.rb +16 -0
  33. data/lib/markdown-ui/content/header.rb +19 -0
  34. data/lib/markdown-ui/content/icon.rb +24 -0
  35. data/lib/markdown-ui/content/item.rb +21 -0
  36. data/lib/markdown-ui/content/list.rb +23 -0
  37. data/lib/markdown-ui/content/parser.rb +66 -0
  38. data/lib/markdown-ui/content/text.rb +24 -0
  39. data/lib/markdown-ui/divider/element.rb +0 -0
  40. data/lib/markdown-ui/divider/hidden.rb +0 -0
  41. data/lib/markdown-ui/divider/standard.rb +0 -0
  42. data/lib/markdown-ui/grid/column/column.rb +18 -0
  43. data/lib/markdown-ui/grid/grid.rb +18 -0
  44. data/lib/markdown-ui/grid/row/row.rb +18 -0
  45. data/lib/markdown-ui/header/header.rb +30 -0
  46. data/lib/markdown-ui/label/custom.rb +20 -0
  47. data/lib/markdown-ui/label/element.rb +34 -0
  48. data/lib/markdown-ui/menu/custom.rb +20 -0
  49. data/lib/markdown-ui/menu/element.rb +62 -0
  50. data/lib/markdown-ui/menu/pagination.rb +17 -0
  51. data/lib/markdown-ui/menu/pointing.rb +17 -0
  52. data/lib/markdown-ui/menu/secondary.rb +17 -0
  53. data/lib/markdown-ui/menu/standard.rb +17 -0
  54. data/lib/markdown-ui/menu/tabular.rb +17 -0
  55. data/lib/markdown-ui/menu/text.rb +17 -0
  56. data/lib/markdown-ui/menu/vertical.rb +17 -0
  57. data/lib/markdown-ui/message/custom_message.rb +20 -0
  58. data/lib/markdown-ui/message/list_message.rb +17 -0
  59. data/lib/markdown-ui/message/message.rb +40 -0
  60. data/lib/markdown-ui/message/standard_message.rb +17 -0
  61. data/lib/markdown-ui/segment/custom_segment.rb +18 -0
  62. data/lib/markdown-ui/segment/horizontal_segment.rb +16 -0
  63. data/lib/markdown-ui/segment/padded_segment.rb +16 -0
  64. data/lib/markdown-ui/segment/piled_segment.rb +16 -0
  65. data/lib/markdown-ui/segment/segment.rb +34 -0
  66. data/lib/markdown-ui/segment/stacked_segment.rb +16 -0
  67. data/lib/markdown-ui/segment/standard_segment.rb +16 -0
  68. data/lib/markdown-ui/segment/vertical_segment.rb +16 -0
  69. data/lib/markdown-ui/tag/custom_tag.rb +25 -0
  70. data/lib/markdown-ui/tag/item_tag.rb +24 -0
  71. data/lib/markdown-ui/tag/list_tag.rb +40 -0
  72. data/lib/markdown-ui/tag/span_tag.rb +14 -0
  73. data/lib/markdown-ui/tag/standard_tag.rb +23 -0
  74. data/lib/markdown-ui/tag/tag.rb +37 -0
  75. data/lib/markdown-ui/utils/klass_util.rb +11 -0
  76. data/lib/markdown-ui/version.rb +3 -0
  77. data/markdown-ui.gemspec +36 -0
  78. data/website/index.html +369 -0
  79. data/website/index.md +389 -0
  80. metadata +208 -0
@@ -0,0 +1,389 @@
1
+ > Inverted Blue Segment:
2
+ > > Inverted Blue Menu:
3
+ > > [Markdown UI](#home "basic")
4
+ > > > Inverted Blue Right Menu:
5
+ > > > [Docs](#docs)
6
+ > > > [About](#about)
7
+ > > > [Github](#github)
8
+ > > > [Install](#install)
9
+
10
+ <!-- -->
11
+
12
+ > Container:
13
+ >
14
+ > <!-- -->
15
+ >
16
+ > > Inverted Attached Blue Very Padded Segment:
17
+ > > # Markdown UI
18
+ > > ### Responsive User Interfaces in Markdown
19
+ >
20
+ > <!-- -->
21
+ >
22
+ > > Attached Segment:
23
+ > >
24
+ > > <!-- -->
25
+ > >
26
+ > > > Equal Width Grid:
27
+ > > > > Column:
28
+ > > > > "A framework for creating responsive UI's for mobile and web using Markdown Syntax. It is a tool for Rapid Prototyping UI's for Single-page and Multiple-page apps, and allows to write UI's only once and then translate it to Semantic UI 2.0, BootStrap 3 (coming soon), Foundation (coming soon), etc."
29
+ > > > > "It helps the developer to focus on the big picture on paper or text-editors, and with few details it lessen the cognitive load which means having meaningful productivity which equates to happiness!"
30
+ > > >
31
+ > > > <!-- -->
32
+ > > >
33
+ > > > > Column:
34
+ > > > > > Inverted Segment:
35
+ > > > > > ```> Pointing Menu:``` <br />
36
+ > > > > > ```> [Home](#home "active")``` <br />
37
+ > > > > > ```> [Messages](#messages)``` <br />
38
+ > > > > > ```> [Friends](#friends)``` <br />
39
+ > > > > > ```> > Right Menu:``` <br />
40
+ > > > > > ```> > [Logout](#logout)``` <br />
41
+ > > > > > <br />
42
+ > > > > > ```__Button|Add Friend__```
43
+ >
44
+ > <!-- -->
45
+ >
46
+ > > Attached Segment:
47
+ > > ##Installation
48
+ > > ```gem install markdown-ui```
49
+ > > ##Usage
50
+ > > ```markdown-ui index.md > index.html```
51
+ > > ##Github
52
+ > > github.com/jjuliano/markdown-ui
53
+ >
54
+ > <!-- -->
55
+ >
56
+ > > Segment:
57
+ > > # Buttons:Center Aligned
58
+ >
59
+ > <!-- -->
60
+ >
61
+ > > Segment:
62
+ > > ### Button
63
+ > > "Standard Button"
64
+ >
65
+ > <!-- -->
66
+ >
67
+ > > Divided Segment Grid:
68
+ > > > HTML Top Attached Segment:
69
+ > > > > Top Attached Label:
70
+ > > > > Standard Button
71
+ > >
72
+ > > <!-- -->
73
+ > >
74
+ > > > Center Aligned Six Wide Column:
75
+ > > > ##### Preview
76
+ > > > __Button|Follow__
77
+ > >
78
+ > > <!-- -->
79
+ > >
80
+ > > > Left Aligned Ten Wide Column:
81
+ > > > ##### Markdown Syntax
82
+ > > > > Inverted Segment:
83
+ > > > > ```
84
+ > > > > __Button|Follow__
85
+ > > > > ```
86
+ > >
87
+ > > <!-- -->
88
+ > >
89
+ >
90
+ > <!-- -->
91
+ >
92
+ > > Divided Segment Grid:
93
+ > > > HTML Top Attached Segment:
94
+ > > > > Top Attached Label:
95
+ > > > > Standard Button with Custom Class
96
+ > >
97
+ > > <!-- -->
98
+ > >
99
+ > > > Center Aligned Six Wide Column:
100
+ > > > ##### Preview
101
+ > > > __Button|Follow|Follow-Button__
102
+ > >
103
+ > > <!-- -->
104
+ > >
105
+ > > > Left Aligned Ten Wide Column:
106
+ > > > ##### Markdown Syntax
107
+ > > > > Inverted Segment:
108
+ > > > > ```__Follow-Button Button|Follow__```
109
+ > > > > <br />or<br />
110
+ > > > > ```__Button|Follow|Follow-Button__```
111
+ > >
112
+ > > <!-- -->
113
+ > >
114
+ >
115
+ > <!-- -->
116
+ >
117
+ > > Divided Segment Grid:
118
+ > > > HTML Top Attached Segment:
119
+ > > > > Top Attached Label:
120
+ > > > > Focusable Button
121
+ > >
122
+ > > <!-- -->
123
+ > >
124
+ > > > Center Aligned Six Wide Column:
125
+ > > > ##### Preview
126
+ > > > __Focusable Button|Follow__
127
+ > >
128
+ > > <!-- -->
129
+ > >
130
+ > > > Left Aligned Ten Wide Column:
131
+ > > > ##### Markdown Syntax
132
+ > > > > Inverted Segment:
133
+ > > > > ```
134
+ > > > > __Focusable Button|Follow__
135
+ > > > > ```
136
+ > >
137
+ > > <!-- -->
138
+ > >
139
+ >
140
+ > <!-- -->
141
+ >
142
+ > > Attached Segment:
143
+ > > ### Emphasis
144
+ > > "A button can be formatted to show different levels of emphasis"
145
+ >
146
+ > <!-- -->
147
+ >
148
+ > > Divided Segment Grid:
149
+ > > > HTML Top Attached Segment:
150
+ > > > > Top Attached Label:
151
+ > > > > Emphasis
152
+ > >
153
+ > > <!-- -->
154
+ > >
155
+ > > > Center Aligned Six Wide Column:
156
+ > > > ##### Preview
157
+ > > > __Button|Save|Primary__ __Button|Discard__
158
+ > > > " "
159
+ > > > __Button|Save|Secondary__ __Button|Discard__
160
+ > >
161
+ > > <!-- -->
162
+ > >
163
+ > > > Left Aligned Ten Wide Column:
164
+ > > > ##### Markdown Syntax
165
+ > > > > Inverted Segment:
166
+ > > > > ```
167
+ > > > > __Button|Save|Primary__
168
+ > > > > __Button|Discard__
169
+ > > > > __Button|Save|Secondary__
170
+ > > > > __Button|Discard__
171
+ > > > > ```
172
+ > >
173
+ > > <!-- -->
174
+ > >
175
+ >
176
+ > <!-- -->
177
+ >
178
+ > > Attached Segment:
179
+ > > ### Animated
180
+ > > "A button can animate to show hidden content"
181
+ >
182
+ > <!-- -->
183
+ >
184
+ > > Divided Segment Grid:
185
+ > > > HTML Top Attached Segment:
186
+ > > > > Top Attached Label:
187
+ > > > > Animated
188
+ > >
189
+ > > <!-- -->
190
+ > >
191
+ > > > Center Aligned Six Wide Column:
192
+ > > > ##### Preview
193
+ > > > __Animated Button|Text:Next;Icon:Right Arrow__
194
+ > >
195
+ > > <!-- -->
196
+ > >
197
+ > > > Left Aligned Ten Wide Column:
198
+ > > > ##### Markdown Syntax
199
+ > > > > Inverted Segment:
200
+ > > > > ```
201
+ > > > > __Animated Button|Text:Next;Icon:Right Arrow__
202
+ > > > > ```
203
+ > >
204
+ > > <!-- -->
205
+ > >
206
+ >
207
+ > <!-- -->
208
+ >
209
+ > > Divided Segment Grid:
210
+ > > > HTML Top Attached Segment:
211
+ > > > > Top Attached Label:
212
+ > > > > Vertical Animated
213
+ > >
214
+ > > <!-- -->
215
+ > >
216
+ > > > Center Aligned Six Wide Column:
217
+ > > > ##### Preview
218
+ > > > __Vertical Animated Button|Icon:Shop;Text:Shop__
219
+ > >
220
+ > > <!-- -->
221
+ > >
222
+ > > > Left Aligned Ten Wide Column:
223
+ > > > ##### Markdown Syntax
224
+ > > > > Inverted Segment:
225
+ > > > > ```
226
+ > > > > __Vertical Animated Button|Icon:Shop;Text:Shop__
227
+ > > > > ```
228
+ > >
229
+ > > <!-- -->
230
+ > >
231
+ >
232
+ > <!-- -->
233
+ >
234
+ > > Divided Segment Grid:
235
+ > > > HTML Top Attached Segment:
236
+ > > > > Top Attached Label:
237
+ > > > > Fade Animated
238
+ > >
239
+ > > <!-- -->
240
+ > >
241
+ > > > Center Aligned Six Wide Column:
242
+ > > > ##### Preview
243
+ > > > __Fade Animated Button|Sign-up for a Pro account;$12.99 a month__
244
+ > >
245
+ > > <!-- -->
246
+ > >
247
+ > > > Left Aligned Ten Wide Column:
248
+ > > > ##### Markdown Syntax
249
+ > > > > Inverted Segment:
250
+ > > > > ```__Fade Animated Button|Text:Sign-up for a Pro account;Text:$12.99 a month__```
251
+ > > > > <br /> or <br />
252
+ > > > > ```__Fade Animated Button|Sign-up for a Pro account;$12.99 a month__```
253
+ > >
254
+ > > <!-- -->
255
+ > >
256
+ >
257
+ > <!-- -->
258
+ >
259
+ > > Attached Segment:
260
+ > > ### Icon
261
+ > > "A button can have only an icon"
262
+ >
263
+ > <!-- -->
264
+ >
265
+ > > Divided Segment Grid:
266
+ > > > HTML Top Attached Segment:
267
+ > > > > Top Attached Label:
268
+ > > > > Icon Button
269
+ > >
270
+ > > <!-- -->
271
+ > >
272
+ > > > Center Aligned Six Wide Column:
273
+ > > > ##### Preview
274
+ > > > __Icon Button|Icon:Cloud__
275
+ > >
276
+ > > <!-- -->
277
+ > >
278
+ > > > Left Aligned Ten Wide Column:
279
+ > > > ##### Markdown Syntax
280
+ > > > > Inverted Segment:
281
+ > > > > ```
282
+ > > > > __Icon Button|Icon:Cloud__
283
+ > > > > ```
284
+ > >
285
+ > > <!-- -->
286
+ > >
287
+ >
288
+ > <!-- -->
289
+ >
290
+ > > Attached Segment:
291
+ > > ### Labeled Icon
292
+ > > "A button can have an icon and a label"
293
+ >
294
+ > <!-- -->
295
+ >
296
+ > > Divided Segment Grid:
297
+ > > > HTML Top Attached Segment:
298
+ > > > > Top Attached Label:
299
+ > > > > Labeled Icon
300
+ > >
301
+ > > <!-- -->
302
+ > >
303
+ > > > Center Aligned Six Wide Column:
304
+ > > > ##### Preview
305
+ > > > __Labeled Icon Button|Icon:Pause,Text:Pause__
306
+ > >
307
+ > > <!-- -->
308
+ > >
309
+ > > > Left Aligned Ten Wide Column:
310
+ > > > ##### Markdown Syntax
311
+ > > > > Inverted Segment:
312
+ > > > > ```
313
+ > > > > __Labeled Icon Button|Icon:Pause,Text:Pause__
314
+ > > > > ```
315
+ > >
316
+ > > <!-- -->
317
+ > >
318
+ >
319
+ > <!-- -->
320
+ >
321
+ > > Attached Segment:
322
+ > > ### Basic Button
323
+ > > "A basic button is less pronounced"
324
+ >
325
+ > <!-- -->
326
+ >
327
+ > > Divided Segment Grid:
328
+ > > > HTML Top Attached Segment:
329
+ > > > > Top Attached Label:
330
+ > > > > Basic Button
331
+ > >
332
+ > > <!-- -->
333
+ > >
334
+ > > > Center Aligned Six Wide Column:
335
+ > > > ##### Preview
336
+ > > > __Basic Button|Icon:User,Text:Add Friend__
337
+ > >
338
+ > > <!-- -->
339
+ > >
340
+ > > > Left Aligned Ten Wide Column:
341
+ > > > ##### Markdown Syntax
342
+ > > > > Inverted Segment:
343
+ > > > > ```
344
+ > > > > __Basic Button|Icon:User,Text:Add Friend__
345
+ > > > > ```
346
+ > >
347
+ > > <!-- -->
348
+ > >
349
+ >
350
+ > <!-- -->
351
+ >
352
+ > > Divided Segment Grid:
353
+ > > > HTML Top Attached Segment:
354
+ > > > > Top Attached Label:
355
+ > > > > Basic Button
356
+ > >
357
+ > > <!-- -->
358
+ > >
359
+ > > > Center Aligned Six Wide Column:
360
+ > > > ##### Preview
361
+ > > > __Button|Text: Black|Basic Black__
362
+ > > > __Button|Text: Yellow|Basic Yellow__
363
+ > > > __Button|Text: Green|Basic Green__
364
+ > > > __Button|Text: Blue|Basic Blue__
365
+ > > > __Button|Text: Orange|Basic Orange__
366
+ > > > __Button|Text: Purple|Basic Purple__
367
+ > > > __Button|Text: Pink|Basic Pink__
368
+ > > > __Button|Text: Red|Basic Red__
369
+ > > > __Button|Text: Teal|Basic Teal__
370
+ > >
371
+ > > <!-- -->
372
+ > >
373
+ > > > Left Aligned Ten Wide Column:
374
+ > > > ##### Markdown Syntax
375
+ > > > > Inverted Segment:
376
+ > > > > ```
377
+ > > > > __Button|Text:Black|Basic Black__
378
+ > > > > __Button|Text:Yellow|Basic Yellow__
379
+ > > > > __Button|Text:Green|Basic Green__
380
+ > > > > __Button|Text:Blue|Basic Blue__
381
+ > > > > __Button|Text:Orange|Basic Orange__
382
+ > > > > __Button|Text:Purple|Basic Purple__
383
+ > > > > __Button|Text:Pink|Basic Pink__
384
+ > > > > __Button|Text:Red|Basic Red__
385
+ > > > > __Button|Text:Teal|Basic Teal__
386
+ > > > ```
387
+ > >
388
+ > > <!-- -->
389
+ > >
metadata ADDED
@@ -0,0 +1,208 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: markdown-ui
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Joel Bryan Juliano
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-07-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: redcarpet
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.2'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: nokogiri
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.6'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.6'
69
+ - !ruby/object:Gem::Dependency
70
+ name: test-unit
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: simplecov
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.10'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.10'
97
+ description: Create responsive UI/UX for mobile and web using Markdown Syntax
98
+ email:
99
+ - joelbryan.juliano@gmail.com
100
+ executables:
101
+ - markdown-ui
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - ".gitignore"
106
+ - ".travis.yml"
107
+ - CODE_OF_CONDUCT.md
108
+ - Gemfile
109
+ - LICENSE.txt
110
+ - README.md
111
+ - Rakefile
112
+ - bin/console
113
+ - bin/setup
114
+ - exe/markdown-ui
115
+ - lib/markdown-ui.rb
116
+ - lib/markdown-ui/button/animated.rb
117
+ - lib/markdown-ui/button/basic.rb
118
+ - lib/markdown-ui/button/custom.rb
119
+ - lib/markdown-ui/button/element.rb
120
+ - lib/markdown-ui/button/focusable.rb
121
+ - lib/markdown-ui/button/group/buttons/custom.rb
122
+ - lib/markdown-ui/button/group/buttons/element.rb
123
+ - lib/markdown-ui/button/group/buttons/icon.rb
124
+ - lib/markdown-ui/button/group/buttons/standard.rb
125
+ - lib/markdown-ui/button/icon.rb
126
+ - lib/markdown-ui/button/labeled_icon.rb
127
+ - lib/markdown-ui/button/standard.rb
128
+ - lib/markdown-ui/container/alignment/center.rb
129
+ - lib/markdown-ui/container/alignment/left.rb
130
+ - lib/markdown-ui/container/alignment/right.rb
131
+ - lib/markdown-ui/container/custom.rb
132
+ - lib/markdown-ui/container/element.rb
133
+ - lib/markdown-ui/container/standard.rb
134
+ - lib/markdown-ui/container/text.rb
135
+ - lib/markdown-ui/content/custom.rb
136
+ - lib/markdown-ui/content/header.rb
137
+ - lib/markdown-ui/content/icon.rb
138
+ - lib/markdown-ui/content/item.rb
139
+ - lib/markdown-ui/content/list.rb
140
+ - lib/markdown-ui/content/parser.rb
141
+ - lib/markdown-ui/content/text.rb
142
+ - lib/markdown-ui/divider/element.rb
143
+ - lib/markdown-ui/divider/hidden.rb
144
+ - lib/markdown-ui/divider/standard.rb
145
+ - lib/markdown-ui/grid/column/column.rb
146
+ - lib/markdown-ui/grid/grid.rb
147
+ - lib/markdown-ui/grid/row/row.rb
148
+ - lib/markdown-ui/header/header.rb
149
+ - lib/markdown-ui/label/custom.rb
150
+ - lib/markdown-ui/label/element.rb
151
+ - lib/markdown-ui/menu/custom.rb
152
+ - lib/markdown-ui/menu/element.rb
153
+ - lib/markdown-ui/menu/pagination.rb
154
+ - lib/markdown-ui/menu/pointing.rb
155
+ - lib/markdown-ui/menu/secondary.rb
156
+ - lib/markdown-ui/menu/standard.rb
157
+ - lib/markdown-ui/menu/tabular.rb
158
+ - lib/markdown-ui/menu/text.rb
159
+ - lib/markdown-ui/menu/vertical.rb
160
+ - lib/markdown-ui/message/custom_message.rb
161
+ - lib/markdown-ui/message/list_message.rb
162
+ - lib/markdown-ui/message/message.rb
163
+ - lib/markdown-ui/message/standard_message.rb
164
+ - lib/markdown-ui/segment/custom_segment.rb
165
+ - lib/markdown-ui/segment/horizontal_segment.rb
166
+ - lib/markdown-ui/segment/padded_segment.rb
167
+ - lib/markdown-ui/segment/piled_segment.rb
168
+ - lib/markdown-ui/segment/segment.rb
169
+ - lib/markdown-ui/segment/stacked_segment.rb
170
+ - lib/markdown-ui/segment/standard_segment.rb
171
+ - lib/markdown-ui/segment/vertical_segment.rb
172
+ - lib/markdown-ui/tag/custom_tag.rb
173
+ - lib/markdown-ui/tag/item_tag.rb
174
+ - lib/markdown-ui/tag/list_tag.rb
175
+ - lib/markdown-ui/tag/span_tag.rb
176
+ - lib/markdown-ui/tag/standard_tag.rb
177
+ - lib/markdown-ui/tag/tag.rb
178
+ - lib/markdown-ui/utils/klass_util.rb
179
+ - lib/markdown-ui/version.rb
180
+ - markdown-ui.gemspec
181
+ - website/index.html
182
+ - website/index.md
183
+ homepage: https://github.com/jjuliano/markdown-ui
184
+ licenses:
185
+ - MIT
186
+ metadata:
187
+ allowed_push_host: https://rubygems.org
188
+ post_install_message:
189
+ rdoc_options: []
190
+ require_paths:
191
+ - lib
192
+ required_ruby_version: !ruby/object:Gem::Requirement
193
+ requirements:
194
+ - - ">="
195
+ - !ruby/object:Gem::Version
196
+ version: '0'
197
+ required_rubygems_version: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ requirements: []
203
+ rubyforge_project:
204
+ rubygems_version: 2.4.5
205
+ signing_key:
206
+ specification_version: 4
207
+ summary: Responsive User Interfaces in Markdown
208
+ test_files: []