markdown-ui 0.1.16 → 0.1.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/Changelog +14 -0
  4. data/Gemfile +3 -0
  5. data/components/collections/markdown-ui-grid/lib/grid/column/column.rb +6 -9
  6. data/components/collections/markdown-ui-grid/lib/grid/grid.rb +6 -9
  7. data/components/collections/markdown-ui-grid/lib/grid/row/row.rb +6 -9
  8. data/components/collections/markdown-ui-grid/markdown-ui-grid.gemspec +1 -1
  9. data/components/collections/markdown-ui-menu/lib/menu/custom.rb +12 -12
  10. data/components/collections/markdown-ui-menu/lib/menu/element.rb +54 -52
  11. data/components/collections/markdown-ui-menu/lib/menu/pagination.rb +11 -10
  12. data/components/collections/markdown-ui-menu/lib/menu/pointing.rb +11 -10
  13. data/components/collections/markdown-ui-menu/lib/menu/secondary.rb +11 -10
  14. data/components/collections/markdown-ui-menu/lib/menu/standard.rb +11 -10
  15. data/components/collections/markdown-ui-menu/lib/menu/tabular.rb +11 -10
  16. data/components/collections/markdown-ui-menu/lib/menu/text.rb +11 -10
  17. data/components/collections/markdown-ui-menu/lib/menu/vertical.rb +11 -10
  18. data/components/collections/markdown-ui-message/lib/message/custom_message.rb +11 -11
  19. data/components/collections/markdown-ui-message/lib/message/list_message.rb +10 -9
  20. data/components/collections/markdown-ui-message/lib/message/message.rb +32 -29
  21. data/components/collections/markdown-ui-message/lib/message/standard_message.rb +10 -9
  22. data/components/collections/markdown-ui-message/lib/message/version.rb +1 -1
  23. data/components/collections/markdown-ui-message/markdown-ui-message.gemspec +2 -2
  24. data/components/elements/markdown-ui-button/lib/button/animated.rb +24 -22
  25. data/components/elements/markdown-ui-button/lib/button/basic.rb +14 -12
  26. data/components/elements/markdown-ui-button/lib/button/custom.rb +16 -14
  27. data/components/elements/markdown-ui-button/lib/button/element.rb +55 -53
  28. data/components/elements/markdown-ui-button/lib/button/focusable.rb +14 -12
  29. data/components/elements/markdown-ui-button/lib/button/group/buttons/custom.rb +14 -12
  30. data/components/elements/markdown-ui-button/lib/button/group/buttons/element.rb +22 -20
  31. data/components/elements/markdown-ui-button/lib/button/group/buttons/icon.rb +14 -12
  32. data/components/elements/markdown-ui-button/lib/button/group/buttons/standard.rb +14 -12
  33. data/components/elements/markdown-ui-button/lib/button/icon.rb +14 -12
  34. data/components/elements/markdown-ui-button/lib/button/labeled_icon.rb +19 -17
  35. data/components/elements/markdown-ui-button/lib/button/standard.rb +14 -12
  36. data/components/elements/markdown-ui-container/lib/container/alignment/center.rb +1 -1
  37. data/components/elements/markdown-ui-container/lib/container/alignment/left.rb +1 -1
  38. data/components/elements/markdown-ui-container/lib/container/alignment/right.rb +1 -1
  39. data/components/elements/markdown-ui-container/lib/container/custom.rb +1 -1
  40. data/components/elements/markdown-ui-container/lib/container/element.rb +5 -5
  41. data/components/elements/markdown-ui-container/lib/container/standard.rb +1 -1
  42. data/components/elements/markdown-ui-container/lib/container/text.rb +1 -1
  43. data/components/elements/markdown-ui-content/lib/content/basic_block.rb +19 -0
  44. data/components/elements/markdown-ui-content/lib/content/content_block.rb +1 -1
  45. data/components/elements/markdown-ui-content/lib/content/custom.rb +1 -1
  46. data/components/elements/markdown-ui-content/lib/content/divider_block.rb +1 -1
  47. data/components/elements/markdown-ui-content/lib/content/field_block.rb +1 -1
  48. data/components/elements/markdown-ui-content/lib/content/flag.rb +2 -2
  49. data/components/elements/markdown-ui-content/lib/content/form_block.rb +1 -1
  50. data/components/elements/markdown-ui-content/lib/content/header.rb +2 -2
  51. data/components/elements/markdown-ui-content/lib/content/header_block.rb +1 -1
  52. data/components/elements/markdown-ui-content/lib/content/icon.rb +2 -2
  53. data/components/elements/markdown-ui-content/lib/content/input_block.rb +1 -1
  54. data/components/elements/markdown-ui-content/lib/content/item.rb +4 -4
  55. data/components/elements/markdown-ui-content/lib/content/item_block.rb +1 -1
  56. data/components/elements/markdown-ui-content/lib/content/list.rb +6 -6
  57. data/components/elements/markdown-ui-content/lib/content/parser.rb +17 -17
  58. data/components/elements/markdown-ui-content/lib/content/span_block.rb +1 -1
  59. data/components/elements/markdown-ui-content/lib/content/text.rb +6 -6
  60. data/components/elements/markdown-ui-header/lib/header/header.rb +3 -3
  61. data/components/elements/markdown-ui-input/lib/input/custom.rb +4 -4
  62. data/components/elements/markdown-ui-input/lib/input/element.rb +10 -10
  63. data/components/elements/markdown-ui-label/lib/label/custom.rb +2 -2
  64. data/components/elements/markdown-ui-label/lib/label/element.rb +9 -16
  65. data/components/elements/markdown-ui-segment/lib/segment/custom_segment.rb +1 -1
  66. data/components/elements/markdown-ui-segment/lib/segment/horizontal_segment.rb +1 -1
  67. data/components/elements/markdown-ui-segment/lib/segment/padded_segment.rb +1 -1
  68. data/components/elements/markdown-ui-segment/lib/segment/piled_segment.rb +1 -1
  69. data/components/elements/markdown-ui-segment/lib/segment/segment.rb +6 -6
  70. data/components/elements/markdown-ui-segment/lib/segment/stacked_segment.rb +1 -1
  71. data/components/elements/markdown-ui-segment/lib/segment/standard_segment.rb +1 -1
  72. data/components/elements/markdown-ui-segment/lib/segment/vertical_segment.rb +1 -1
  73. data/components/shared/markdown-ui-shared/Gemfile +2 -0
  74. data/components/shared/markdown-ui-shared/lib/markdown-ui-shared.rb +3 -0
  75. data/components/shared/markdown-ui-shared/lib/shared/tag_klass.rb +77 -0
  76. data/components/shared/markdown-ui-shared/lib/shared/version.rb +5 -0
  77. data/components/shared/markdown-ui-shared/markdown-ui-shared.gemspec +37 -0
  78. data/lib/markdown-ui.rb +10 -132
  79. data/lib/markdown-ui/renderers/block_quote.rb +47 -0
  80. data/lib/markdown-ui/renderers/double_emphasis.rb +97 -0
  81. data/lib/markdown-ui/renderers/emphasis.rb +23 -0
  82. data/lib/markdown-ui/renderers/header.rb +9 -0
  83. data/lib/markdown-ui/renderers/horizontal_rule.rb +19 -0
  84. data/lib/markdown-ui/renderers/link.rb +10 -0
  85. data/lib/markdown-ui/renderers/list.rb +10 -0
  86. data/lib/markdown-ui/renderers/paragraph.rb +9 -0
  87. data/lib/markdown-ui/renderers/quote.rb +9 -0
  88. data/lib/markdown-ui/shared.rb +7 -0
  89. data/lib/markdown-ui/tag/article_tag.rb +14 -0
  90. data/lib/markdown-ui/tag/button_tag.rb +6 -19
  91. data/lib/markdown-ui/tag/custom_tag.rb +11 -10
  92. data/lib/markdown-ui/tag/focusable_button_tag.rb +6 -19
  93. data/lib/markdown-ui/tag/footer_tag.rb +14 -0
  94. data/lib/markdown-ui/tag/header_tag.rb +14 -0
  95. data/lib/markdown-ui/tag/input_tag.rb +7 -27
  96. data/lib/markdown-ui/tag/item_tag.rb +6 -14
  97. data/lib/markdown-ui/tag/label_tag.rb +6 -19
  98. data/lib/markdown-ui/tag/list_tag.rb +18 -21
  99. data/lib/markdown-ui/tag/section_tag.rb +14 -0
  100. data/lib/markdown-ui/tag/span_tag.rb +7 -7
  101. data/lib/markdown-ui/tag/standard_tag.rb +6 -19
  102. data/lib/markdown-ui/tag/tag.rb +18 -20
  103. data/lib/markdown-ui/tools/html_formatter.rb +11 -0
  104. data/lib/markdown-ui/utils/klass_util.rb +13 -3
  105. data/lib/markdown-ui/version.rb +1 -1
  106. data/website/docs/flag.html +1 -1
  107. data/website/docs/icon.html +609 -0
  108. data/website/docs/icon.md +691 -0
  109. data/website/docs/toc.html +4 -0
  110. data/website/docs/toc.md +5 -2
  111. data/website/index.html +2 -2
  112. metadata +25 -2
@@ -0,0 +1,691 @@
1
+ > Container:
2
+ > > Inverted Segment:
3
+ > > > Stackable Inverted Container Menu:
4
+ > > > [Markdown UI](http://jjuliano.github.io/markdown-ui "basic")
5
+ > > > > Stackable Inverted Right Menu:
6
+ > > > > [Table of Contents](toc.html)
7
+ > > > > [About](../about.html)
8
+ > > > > [Github](https://github.com/jjuliano/markdown-ui)
9
+ > > > > [Install](../index.html#install)
10
+ >
11
+ > <!-- -->
12
+ > > Basic Segment:
13
+ > > # Icon::icon
14
+ > > "An icon is a glyph used to represent something else"
15
+ >
16
+ > <!-- -->
17
+ > > Text Container:
18
+ > > > Segments:
19
+ > > > > Basic Segment:
20
+ > > > > # Web Content
21
+ > > > > "Icons can represent types of content found on websites"
22
+ > > > > > Stackable Four Column Doubling Grid Container:
23
+ > > > > > > Center Aligned Column:
24
+ > > > > > > _alarm icon_
25
+ > > > > > > "_alarm icon_"
26
+ > > > > >
27
+ > > > > > <!-- -->
28
+ > > > > >
29
+ > > > > > > Center Aligned Column:
30
+ > > > > > > _alarm slash icon_
31
+ > > > > > > "_alarm slash icon_"
32
+ > > > > >
33
+ > > > > > <!-- -->
34
+ > > > > >
35
+ > > > > > > Center Aligned Column:
36
+ > > > > > > _alarm outline icon_
37
+ > > > > > > "_alarm outline icon_"
38
+ > > > > >
39
+ > > > > > <!-- -->
40
+ > > > > >
41
+ > > > > > > Center Aligned Column:
42
+ > > > > > > _alarm slash outline icon_
43
+ > > > > > > "_alarm slash outline icon_"
44
+ > > > > >
45
+ > > > > > <!-- -->
46
+ > > > > >
47
+ > > > > > > Center Aligned Column:
48
+ > > > > > > _at icon_
49
+ > > > > > > "_at icon_"
50
+ > > > > >
51
+ > > > > > <!-- -->
52
+ > > > > >
53
+ > > > > > > Center Aligned Column:
54
+ > > > > > > _browser icon_
55
+ > > > > > > "_browser icon_"
56
+ > > > > >
57
+ > > > > > <!-- -->
58
+ > > > > >
59
+ > > > > > > Center Aligned Column:
60
+ > > > > > > _bug icon_
61
+ > > > > > > "_bug icon_"
62
+ > > > > >
63
+ > > > > > <!-- -->
64
+ > > > > >
65
+ > > > > > > Center Aligned Column:
66
+ > > > > > > _calendar outline icon_
67
+ > > > > > > "_calendar outline icon_"
68
+ > > > > >
69
+ > > > > > <!-- -->
70
+ > > > > >
71
+ > > > > > > Center Aligned Column:
72
+ > > > > > > _calendar icon_
73
+ > > > > > > "_calendar icon_"
74
+ > > > > >
75
+ > > > > > <!-- -->
76
+ > > > > >
77
+ > > > > > > Center Aligned Column:
78
+ > > > > > > _cloud icon_
79
+ > > > > > > "_cloud icon_"
80
+ > > > > >
81
+ > > > > > <!-- -->
82
+ > > > > >
83
+ > > > > > > Center Aligned Column:
84
+ > > > > > > _comment icon_
85
+ > > > > > > "_comment icon_"
86
+ > > > > >
87
+ > > > > > <!-- -->
88
+ > > > > >
89
+ > > > > > > Center Aligned Column:
90
+ > > > > > > _comments icon_
91
+ > > > > > > "_comments icon_"
92
+ > > > > >
93
+ > > > > > <!-- -->
94
+ > > > > >
95
+ > > > > > > Center Aligned Column:
96
+ > > > > > > _comment outline icon_
97
+ > > > > > > "_comment outline icon_"
98
+ > > > > >
99
+ > > > > > <!-- -->
100
+ > > > > >
101
+ > > > > > > Center Aligned Column:
102
+ > > > > > > _comments outline icon_
103
+ > > > > > > "_comments outline icon_"
104
+ > > > > >
105
+ > > > > > <!-- -->
106
+ > > > > >
107
+ > > > > > > Center Aligned Column:
108
+ > > > > > > _copyright icon_
109
+ > > > > > > "_copyright icon_"
110
+ > > > > >
111
+ > > > > > <!-- -->
112
+ > > > > >
113
+ > > > > > > Center Aligned Column:
114
+ > > > > > > _dashboard icon_
115
+ > > > > > > "_dashboard icon_"
116
+ > > > > >
117
+ > > > > > <!-- -->
118
+ > > > > >
119
+ > > > > > > Center Aligned Column:
120
+ > > > > > > _dropdown icon_
121
+ > > > > > > "_dropdown icon_"
122
+ > > > > >
123
+ > > > > > <!-- -->
124
+ > > > > >
125
+ > > > > > > Center Aligned Column:
126
+ > > > > > > _external square icon_
127
+ > > > > > > "_external square icon_"
128
+ > > > > >
129
+ > > > > > <!-- -->
130
+ > > > > >
131
+ > > > > > > Center Aligned Column:
132
+ > > > > > > _external icon_
133
+ > > > > > > "_external icon_"
134
+ > > > > >
135
+ > > > > > <!-- -->
136
+ > > > > >
137
+ > > > > > > Center Aligned Column:
138
+ > > > > > > _eyedropper icon_
139
+ > > > > > > "_eyedropper icon_"
140
+ > > > > >
141
+ > > > > > <!-- -->
142
+ > > > > >
143
+ > > > > > > Center Aligned Column:
144
+ > > > > > > _feed icon_
145
+ > > > > > > "_feed icon_"
146
+ > > > > >
147
+ > > > > > <!-- -->
148
+ > > > > >
149
+ > > > > > > Center Aligned Column:
150
+ > > > > > > _find icon_
151
+ > > > > > > "_find icon_"
152
+ > > > > >
153
+ > > > > > <!-- -->
154
+ > > > > >
155
+ > > > > > > Center Aligned Column:
156
+ > > > > > > _heartbeat icon_
157
+ > > > > > > "_heartbeat icon_"
158
+ > > > > >
159
+ > > > > > <!-- -->
160
+ > > > > >
161
+ > > > > > > Center Aligned Column:
162
+ > > > > > > _history icon_
163
+ > > > > > > "_history icon_"
164
+ > > > > >
165
+ > > > > > <!-- -->
166
+ > > > > >
167
+ > > > > > > Center Aligned Column:
168
+ > > > > > > _home icon_
169
+ > > > > > > "_home icon_"
170
+ > > > > >
171
+ > > > > > <!-- -->
172
+ > > > > >
173
+ > > > > > > Center Aligned Column:
174
+ > > > > > > _idea icon_
175
+ > > > > > > "_idea icon_"
176
+ > > > > >
177
+ > > > > > <!-- -->
178
+ > > > > >
179
+ > > > > > > Center Aligned Column:
180
+ > > > > > > _inbox icon_
181
+ > > > > > > "_inbox icon_"
182
+ > > > > >
183
+ > > > > > <!-- -->
184
+ > > > > >
185
+ > > > > > > Center Aligned Column:
186
+ > > > > > > _lab icon_
187
+ > > > > > > "_lab icon_"
188
+ > > > > >
189
+ > > > > > <!-- -->
190
+ > > > > >
191
+ > > > > > > Center Aligned Column:
192
+ > > > > > > _mail icon_
193
+ > > > > > > "_mail icon_"
194
+ > > > > >
195
+ > > > > > <!-- -->
196
+ > > > > >
197
+ > > > > > > Center Aligned Column:
198
+ > > > > > > _mail outline icon_
199
+ > > > > > > "_mail outline icon_"
200
+ > > > > >
201
+ > > > > > <!-- -->
202
+ > > > > >
203
+ > > > > > > Center Aligned Column:
204
+ > > > > > > _mail square icon_
205
+ > > > > > > "_mail square icon_"
206
+ > > > > >
207
+ > > > > > <!-- -->
208
+ > > > > >
209
+ > > > > > > Center Aligned Column:
210
+ > > > > > > _map icon_
211
+ > > > > > > "_map icon_"
212
+ > > > > >
213
+ > > > > > <!-- -->
214
+ > > > > >
215
+ > > > > > > Center Aligned Column:
216
+ > > > > > > _options icon_
217
+ > > > > > > "_options icon_"
218
+ > > > > >
219
+ > > > > > <!-- -->
220
+ > > > > >
221
+ > > > > > > Center Aligned Column:
222
+ > > > > > > _paint brush icon_
223
+ > > > > > > "_paint brush icon_"
224
+ > > > > >
225
+ > > > > > <!-- -->
226
+ > > > > >
227
+ > > > > > > Center Aligned Column:
228
+ > > > > > > _payment icon_
229
+ > > > > > > "_payment icon_"
230
+ > > > > >
231
+ > > > > > <!-- -->
232
+ > > > > >
233
+ > > > > > > Center Aligned Column:
234
+ > > > > > > _phone icon_
235
+ > > > > > > "_phone icon_"
236
+ > > > > >
237
+ > > > > > <!-- -->
238
+ > > > > >
239
+ > > > > > > Center Aligned Column:
240
+ > > > > > > _phone square icon_
241
+ > > > > > > "_phone square icon_"
242
+ > > > > >
243
+ > > > > > <!-- -->
244
+ > > > > >
245
+ > > > > > > Center Aligned Column:
246
+ > > > > > > _privacy icon_
247
+ > > > > > > "_privacy icon_"
248
+ > > > > >
249
+ > > > > > <!-- -->
250
+ > > > > >
251
+ > > > > > > Center Aligned Column:
252
+ > > > > > > _protect icon_
253
+ > > > > > > "_protect icon_"
254
+ > > > > >
255
+ > > > > > <!-- -->
256
+ > > > > >
257
+ > > > > > > Center Aligned Column:
258
+ > > > > > > _search icon_
259
+ > > > > > > "_search icon_"
260
+ > > > > >
261
+ > > > > > <!-- -->
262
+ > > > > >
263
+ > > > > > > Center Aligned Column:
264
+ > > > > > > _setting icon_
265
+ > > > > > > "_setting icon_"
266
+ > > > > >
267
+ > > > > > <!-- -->
268
+ > > > > >
269
+ > > > > > > Center Aligned Column:
270
+ > > > > > > _settings icon_
271
+ > > > > > > "_settings icon_"
272
+ > > > > >
273
+ > > > > > <!-- -->
274
+ > > > > >
275
+ > > > > > > Center Aligned Column:
276
+ > > > > > > _shop icon_
277
+ > > > > > > "_shop icon_"
278
+ > > > > >
279
+ > > > > > <!-- -->
280
+ > > > > >
281
+ > > > > > > Center Aligned Column:
282
+ > > > > > > _sidebar icon_
283
+ > > > > > > "_sidebar icon_"
284
+ > > > > >
285
+ > > > > > <!-- -->
286
+ > > > > >
287
+ > > > > > > Center Aligned Column:
288
+ > > > > > > _signal icon_
289
+ > > > > > > "_signal icon_"
290
+ > > > > >
291
+ > > > > > <!-- -->
292
+ > > > > >
293
+ > > > > > > Center Aligned Column:
294
+ > > > > > > _sitemap icon_
295
+ > > > > > > "_sitemap icon_"
296
+ > > > > >
297
+ > > > > > <!-- -->
298
+ > > > > >
299
+ > > > > > > Center Aligned Column:
300
+ > > > > > > _tag icon_
301
+ > > > > > > "_tag icon_"
302
+ > > > > >
303
+ > > > > > <!-- -->
304
+ > > > > >
305
+ > > > > > > Center Aligned Column:
306
+ > > > > > > _tags icon_
307
+ > > > > > > "_tags icon_"
308
+ > > > > >
309
+ > > > > > <!-- -->
310
+ > > > > >
311
+ > > > > > > Center Aligned Column:
312
+ > > > > > > _tasks icon_
313
+ > > > > > > "_tasks icon_"
314
+ > > > > >
315
+ > > > > > <!-- -->
316
+ > > > > >
317
+ > > > > > > Center Aligned Column:
318
+ > > > > > > _terminal icon_
319
+ > > > > > > "_terminal icon_"
320
+ > > > > >
321
+ > > > > > <!-- -->
322
+ > > > > >
323
+ > > > > > > Center Aligned Column:
324
+ > > > > > > _text telephone icon_
325
+ > > > > > > "_text telephone icon_"
326
+ > > > > >
327
+ > > > > > <!-- -->
328
+ > > > > >
329
+ > > > > > > Center Aligned Column:
330
+ > > > > > > _ticket icon_
331
+ > > > > > > "_ticket icon_"
332
+ > > > > >
333
+ > > > > > <!-- -->
334
+ > > > > >
335
+ > > > > > > Center Aligned Column:
336
+ > > > > > > _trophy icon_
337
+ > > > > > > "_trophy icon_"
338
+ > > > > >
339
+ > > > > > <!-- -->
340
+ > > > > >
341
+ > > > > > > Center Aligned Column:
342
+ > > > > > > _wifi icon_
343
+ > > > > > > "_wifi icon_"
344
+ > > > >
345
+ > > > > <!-- -->
346
+ > > > > ____
347
+ > > > > # User Actions
348
+ > > > > "Icons can represent common actions a user can take"
349
+ > > > > > Stackable Four Column Doubling Grid Container:
350
+ > > > > > > Center Aligned Column:
351
+ > > > > > > _adjust icon_
352
+ > > > > > > "_adjust icon_"
353
+ > > > > >
354
+ > > > > > <!-- -->
355
+ > > > > >
356
+ > > > > > > Center Aligned Column:
357
+ > > > > > > _add user icon_
358
+ > > > > > > "_add user icon_"
359
+ > > > > >
360
+ > > > > > <!-- -->
361
+ > > > > >
362
+ > > > > > > Center Aligned Column:
363
+ > > > > > > _add to cart icon_
364
+ > > > > > > "_add to cart icon_"
365
+ > > > > >
366
+ > > > > > <!-- -->
367
+ > > > > >
368
+ > > > > > > Center Aligned Column:
369
+ > > > > > > _archive icon_
370
+ > > > > > > "_archive icon_"
371
+ > > > > >
372
+ > > > > > <!-- -->
373
+ > > > > >
374
+ > > > > > > Center Aligned Column:
375
+ > > > > > > _ban icon_
376
+ > > > > > > "_ban icon_"
377
+ > > > > >
378
+ > > > > > <!-- -->
379
+ > > > > >
380
+ > > > > > > Center Aligned Column:
381
+ > > > > > > _bookmark icon_
382
+ > > > > > > "_bookmark icon_"
383
+ > > > > >
384
+ > > > > > <!-- -->
385
+ > > > > >
386
+ > > > > > > Center Aligned Column:
387
+ > > > > > > _call icon_
388
+ > > > > > > "_call icon_"
389
+ > > > > >
390
+ > > > > > <!-- -->
391
+ > > > > >
392
+ > > > > > > Center Aligned Column:
393
+ > > > > > > _call square icon_
394
+ > > > > > > "_call square icon_"
395
+ > > > > >
396
+ > > > > > <!-- -->
397
+ > > > > >
398
+ > > > > > > Center Aligned Column:
399
+ > > > > > > _cloud download icon_
400
+ > > > > > > "_cloud download icon_"
401
+ > > > > >
402
+ > > > > > <!-- -->
403
+ > > > > >
404
+ > > > > > > Center Aligned Column:
405
+ > > > > > > _cloud upload icon_
406
+ > > > > > > "_cloud upload icon_"
407
+ > > > > >
408
+ > > > > > <!-- -->
409
+ > > > > >
410
+ > > > > > > Center Aligned Column:
411
+ > > > > > > _compress icon_
412
+ > > > > > > "_compress icon_"
413
+ > > > > >
414
+ > > > > > <!-- -->
415
+ > > > > >
416
+ > > > > > > Center Aligned Column:
417
+ > > > > > > _configure icon_
418
+ > > > > > > "_configure icon_"
419
+ > > > > >
420
+ > > > > > <!-- -->
421
+ > > > > >
422
+ > > > > > > Center Aligned Column:
423
+ > > > > > > _download icon_
424
+ > > > > > > "_download icon_"
425
+ > > > > >
426
+ > > > > > <!-- -->
427
+ > > > > >
428
+ > > > > > > Center Aligned Column:
429
+ > > > > > > _edit icon_
430
+ > > > > > > "_edit icon_"
431
+ > > > > >
432
+ > > > > > <!-- -->
433
+ > > > > >
434
+ > > > > > > Center Aligned Column:
435
+ > > > > > > _erase icon_
436
+ > > > > > > "_erase icon_"
437
+ > > > > >
438
+ > > > > > <!-- -->
439
+ > > > > >
440
+ > > > > > > Center Aligned Column:
441
+ > > > > > > _exchange icon_
442
+ > > > > > > "_exchange icon_"
443
+ > > > > >
444
+ > > > > > <!-- -->
445
+ > > > > >
446
+ > > > > > > Center Aligned Column:
447
+ > > > > > > _external share icon_
448
+ > > > > > > "_external share icon_"
449
+ > > > > >
450
+ > > > > > <!-- -->
451
+ > > > > >
452
+ > > > > > > Center Aligned Column:
453
+ > > > > > > _expand icon_
454
+ > > > > > > "_expand icon_"
455
+ > > > > >
456
+ > > > > > <!-- -->
457
+ > > > > >
458
+ > > > > > > Center Aligned Column:
459
+ > > > > > > _filter icon_
460
+ > > > > > > "_filter icon_"
461
+ > > > > >
462
+ > > > > > <!-- -->
463
+ > > > > >
464
+ > > > > > > Center Aligned Column:
465
+ > > > > > > _flag icon_
466
+ > > > > > > "_flag icon_"
467
+ > > > > >
468
+ > > > > > <!-- -->
469
+ > > > > >
470
+ > > > > > > Center Aligned Column:
471
+ > > > > > > _flag outline icon_
472
+ > > > > > > "_flag outline icon_"
473
+ > > > > >
474
+ > > > > > <!-- -->
475
+ > > > > >
476
+ > > > > > > Center Aligned Column:
477
+ > > > > > > _forward mail icon_
478
+ > > > > > > "_forward mail icon_"
479
+ > > > > >
480
+ > > > > > <!-- -->
481
+ > > > > >
482
+ > > > > > > Center Aligned Column:
483
+ > > > > > > _hide icon_
484
+ > > > > > > "_hide icon_"
485
+ > > > > >
486
+ > > > > > <!-- -->
487
+ > > > > >
488
+ > > > > > > Center Aligned Column:
489
+ > > > > > > _in cart icon_
490
+ > > > > > > "_in cart icon_"
491
+ > > > > >
492
+ > > > > > <!-- -->
493
+ > > > > >
494
+ > > > > > > Center Aligned Column:
495
+ > > > > > > _lock icon_
496
+ > > > > > > "_lock icon_"
497
+ > > > > >
498
+ > > > > > <!-- -->
499
+ > > > > >
500
+ > > > > > > Center Aligned Column:
501
+ > > > > > > _pin icon_
502
+ > > > > > > "_pin icon_"
503
+ > > > > >
504
+ > > > > > <!-- -->
505
+ > > > > >
506
+ > > > > > > Center Aligned Column:
507
+ > > > > > > _print icon_
508
+ > > > > > > "_print icon_"
509
+ > > > > >
510
+ > > > > > <!-- -->
511
+ > > > > >
512
+ > > > > > > Center Aligned Column:
513
+ > > > > > > _random icon_
514
+ > > > > > > "_random icon_"
515
+ > > > > >
516
+ > > > > > <!-- -->
517
+ > > > > >
518
+ > > > > > > Center Aligned Column:
519
+ > > > > > > _recycle icon_
520
+ > > > > > > "_recycle icon_"
521
+ > > > > >
522
+ > > > > > <!-- -->
523
+ > > > > >
524
+ > > > > > > Center Aligned Column:
525
+ > > > > > > _refresh icon_
526
+ > > > > > > "_refresh icon_"
527
+ > > > > >
528
+ > > > > > <!-- -->
529
+ > > > > >
530
+ > > > > > > Center Aligned Column:
531
+ > > > > > > _remove bookmark icon_
532
+ > > > > > > "_remove bookmark icon_"
533
+ > > > > >
534
+ > > > > > <!-- -->
535
+ > > > > >
536
+ > > > > > > Center Aligned Column:
537
+ > > > > > > _remove user icon_
538
+ > > > > > > "_remove user icon_"
539
+ > > > > >
540
+ > > > > > <!-- -->
541
+ > > > > >
542
+ > > > > > > Center Aligned Column:
543
+ > > > > > > _repeat icon_
544
+ > > > > > > "_repeat icon_"
545
+ > > > > >
546
+ > > > > > <!-- -->
547
+ > > > > >
548
+ > > > > > > Center Aligned Column:
549
+ > > > > > > _reply all icon_
550
+ > > > > > > "_reply all icon_"
551
+ > > > > >
552
+ > > > > > <!-- -->
553
+ > > > > >
554
+ > > > > > > Center Aligned Column:
555
+ > > > > > > _reply icon_
556
+ > > > > > > "_reply icon_"
557
+ > > > > >
558
+ > > > > > <!-- -->
559
+ > > > > >
560
+ > > > > > > Center Aligned Column:
561
+ > > > > > > _retweet icon_
562
+ > > > > > > "_retweet icon_"
563
+ > > > > >
564
+ > > > > > <!-- -->
565
+ > > > > >
566
+ > > > > > > Center Aligned Column:
567
+ > > > > > > _send icon_
568
+ > > > > > > "_send icon_"
569
+ > > > > >
570
+ > > > > > <!-- -->
571
+ > > > > >
572
+ > > > > > > Center Aligned Column:
573
+ > > > > > > _send outline icon_
574
+ > > > > > > "_send outline icon_"
575
+ > > > > >
576
+ > > > > > <!-- -->
577
+ > > > > >
578
+ > > > > > > Center Aligned Column:
579
+ > > > > > > _share alternate icon_
580
+ > > > > > > "_share alternate icon_"
581
+ > > > > >
582
+ > > > > > <!-- -->
583
+ > > > > >
584
+ > > > > > > Center Aligned Column:
585
+ > > > > > > _share alternate square icon_
586
+ > > > > > > "_share alternate square icon_"
587
+ > > > > >
588
+ > > > > > <!-- -->
589
+ > > > > >
590
+ > > > > > > Center Aligned Column:
591
+ > > > > > > _share icon_
592
+ > > > > > > "_share icon_"
593
+ > > > > >
594
+ > > > > > <!-- -->
595
+ > > > > >
596
+ > > > > > > Center Aligned Column:
597
+ > > > > > > _share square icon_
598
+ > > > > > > "_share square icon_"
599
+ > > > > >
600
+ > > > > > <!-- -->
601
+ > > > > >
602
+ > > > > > > Center Aligned Column:
603
+ > > > > > > _sign in icon_
604
+ > > > > > > "_sign in icon_"
605
+ > > > > >
606
+ > > > > > <!-- -->
607
+ > > > > >
608
+ > > > > > > Center Aligned Column:
609
+ > > > > > > _sign out icon_
610
+ > > > > > > "_sign out icon_"
611
+ > > > > >
612
+ > > > > > <!-- -->
613
+ > > > > >
614
+ > > > > > > Center Aligned Column:
615
+ > > > > > > _theme icon_
616
+ > > > > > > "_theme icon_"
617
+ > > > > >
618
+ > > > > > <!-- -->
619
+ > > > > >
620
+ > > > > > > Center Aligned Column:
621
+ > > > > > > _translate icon_
622
+ > > > > > > "_translate icon_"
623
+ > > > > >
624
+ > > > > > <!-- -->
625
+ > > > > >
626
+ > > > > > > Center Aligned Column:
627
+ > > > > > > _undo icon_
628
+ > > > > > > "_undo icon_"
629
+ > > > > >
630
+ > > > > > <!-- -->
631
+ > > > > >
632
+ > > > > > > Center Aligned Column:
633
+ > > > > > > _unhide icon_
634
+ > > > > > > "_unhide icon_"
635
+ > > > > >
636
+ > > > > > <!-- -->
637
+ > > > > >
638
+ > > > > > > Center Aligned Column:
639
+ > > > > > > _unlock alternate icon_
640
+ > > > > > > "_unlock alternate icon_"
641
+ > > > > >
642
+ > > > > > <!-- -->
643
+ > > > > >
644
+ > > > > > > Center Aligned Column:
645
+ > > > > > > _unlock icon_
646
+ > > > > > > "_unlock icon_"
647
+ > > > > >
648
+ > > > > > <!-- -->
649
+ > > > > >
650
+ > > > > > > Center Aligned Column:
651
+ > > > > > > _upload icon_
652
+ > > > > > > "_upload icon_"
653
+ > > > > >
654
+ > > > > > <!-- -->
655
+ > > > > >
656
+ > > > > > > Center Aligned Column:
657
+ > > > > > > _wait icon_
658
+ > > > > > > "_wait icon_"
659
+ > > > > >
660
+ > > > > > <!-- -->
661
+ > > > > >
662
+ > > > > > > Center Aligned Column:
663
+ > > > > > > _wizard icon_
664
+ > > > > > > "_wizard icon_"
665
+ > > > > >
666
+ > > > > > <!-- -->
667
+ > > > > >
668
+ > > > > > > Center Aligned Column:
669
+ > > > > > > _write icon_
670
+ > > > > > > "_write icon_"
671
+ > > > > >
672
+ > > > > > <!-- -->
673
+ > > > > >
674
+ > > > > > > Center Aligned Column:
675
+ > > > > > > _write square icon_
676
+ > > > > > > "_write square icon_"
677
+ > > > > >
678
+ > > > > > <!-- -->
679
+ > > > > >
680
+ > > > > >
681
+
682
+ >
683
+ > <!-- -->
684
+ > > Inverted Center Aligned Footer Segment Container Grid:
685
+ > > > Ten Wide Column:
686
+ > > > ##### Help Preserve This Project:Inverted
687
+ > > > Please help Markdown-UI by means of voluntary donations, money donated to the project will benefit the project by ensuring that Markdown-UI itself will remain well supported for the foreseeable future.
688
+ > > > " "
689
+ > > > [__Primary Button|Donate Today__](PAYPAL_BUTTON)
690
+ > ____
691
+ > > [Free and Open Source (MIT)](http://markdown-ui.mit-license.org)