asciidoctor-epub3 1.5.0.alpha.9 → 1.5.0.alpha.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'stringio' unless defined? StringIO
2
4
 
3
5
  class String
@@ -1,376 +1,378 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Asciidoctor
2
- module Epub3
3
- # Map of Font Awesome icon names to unicode characters
4
- FontIconMap = {
5
- glass: '\f000',
6
- music: '\f001',
7
- search: '\f002',
8
- envelope_o: '\f003',
9
- heart: '\f004',
10
- star: '\f005',
11
- star_o: '\f006',
12
- user: '\f007',
13
- film: '\f008',
14
- th_large: '\f009',
15
- th: '\f00a',
16
- th_list: '\f00b',
17
- check: '\f00c',
18
- times: '\f00d',
19
- search_plus: '\f00e',
20
- search_minus: '\f010',
21
- power_off: '\f011',
22
- signal: '\f012',
23
- cog: '\f013',
24
- trash_o: '\f014',
25
- home: '\f015',
26
- file_o: '\f016',
27
- clock_o: '\f017',
28
- road: '\f018',
29
- download: '\f019',
30
- arrow_circle_o_down: '\f01a',
31
- arrow_circle_o_up: '\f01b',
32
- inbox: '\f01c',
33
- play_circle_o: '\f01d',
34
- repeat: '\f01e',
35
- refresh: '\f021',
36
- list_alt: '\f022',
37
- lock: '\f023',
38
- flag: '\f024',
39
- headphones: '\f025',
40
- volume_off: '\f026',
41
- volume_down: '\f027',
42
- volume_up: '\f028',
43
- qrcode: '\f029',
44
- barcode: '\f02a',
45
- tag: '\f02b',
46
- tags: '\f02c',
47
- book: '\f02d',
48
- bookmark: '\f02e',
49
- print: '\f02f',
50
- camera: '\f030',
51
- font: '\f031',
52
- bold: '\f032',
53
- italic: '\f033',
54
- text_height: '\f034',
55
- text_width: '\f035',
56
- align_left: '\f036',
57
- align_center: '\f037',
58
- align_right: '\f038',
59
- align_justify: '\f039',
60
- list: '\f03a',
61
- outdent: '\f03b',
62
- indent: '\f03c',
63
- video_camera: '\f03d',
64
- picture_o: '\f03e',
65
- pencil: '\f040',
66
- map_marker: '\f041',
67
- adjust: '\f042',
68
- tint: '\f043',
69
- pencil_square_o: '\f044',
70
- share_square_o: '\f045',
71
- check_square_o: '\f046',
72
- arrows: '\f047',
73
- step_backward: '\f048',
74
- fast_backward: '\f049',
75
- backward: '\f04a',
76
- play: '\f04b',
77
- pause: '\f04c',
78
- stop: '\f04d',
79
- forward: '\f04e',
80
- fast_forward: '\f050',
81
- step_forward: '\f051',
82
- eject: '\f052',
83
- chevron_left: '\f053',
84
- chevron_right: '\f054',
85
- plus_circle: '\f055',
86
- minus_circle: '\f056',
87
- times_circle: '\f057',
88
- check_circle: '\f058',
89
- question_circle: '\f059',
90
- info_circle: '\f05a',
91
- crosshairs: '\f05b',
92
- times_circle_o: '\f05c',
93
- check_circle_o: '\f05d',
94
- ban: '\f05e',
95
- arrow_left: '\f060',
96
- arrow_right: '\f061',
97
- arrow_up: '\f062',
98
- arrow_down: '\f063',
99
- share: '\f064',
100
- expand: '\f065',
101
- compress: '\f066',
102
- plus: '\f067',
103
- minus: '\f068',
104
- asterisk: '\f069',
105
- exclamation_circle: '\f06a',
106
- gift: '\f06b',
107
- leaf: '\f06c',
108
- fire: '\f06d',
109
- eye: '\f06e',
110
- eye_slash: '\f070',
111
- exclamation_triangle: '\f071',
112
- plane: '\f072',
113
- calendar: '\f073',
114
- random: '\f074',
115
- comment: '\f075',
116
- magnet: '\f076',
117
- chevron_up: '\f077',
118
- chevron_down: '\f078',
119
- retweet: '\f079',
120
- shopping_cart: '\f07a',
121
- folder: '\f07b',
122
- folder_open: '\f07c',
123
- arrows_v: '\f07d',
124
- arrows_h: '\f07e',
125
- bar_chart_o: '\f080',
126
- twitter_square: '\f081',
127
- facebook_square: '\f082',
128
- camera_retro: '\f083',
129
- key: '\f084',
130
- cogs: '\f085',
131
- comments: '\f086',
132
- thumbs_o_up: '\f087',
133
- thumbs_o_down: '\f088',
134
- star_half: '\f089',
135
- heart_o: '\f08a',
136
- sign_out: '\f08b',
137
- linkedin_square: '\f08c',
138
- thumb_tack: '\f08d',
139
- external_link: '\f08e',
140
- sign_in: '\f090',
141
- trophy: '\f091',
142
- github_square: '\f092',
143
- upload: '\f093',
144
- lemon_o: '\f094',
145
- phone: '\f095',
146
- square_o: '\f096',
147
- bookmark_o: '\f097',
148
- phone_square: '\f098',
149
- twitter: '\f099',
150
- facebook: '\f09a',
151
- github: '\f09b',
152
- unlock: '\f09c',
153
- credit_card: '\f09d',
154
- rss: '\f09e',
155
- hdd_o: '\f0a0',
156
- bullhorn: '\f0a1',
157
- bell: '\f0f3',
158
- certificate: '\f0a3',
159
- hand_o_right: '\f0a4',
160
- hand_o_left: '\f0a5',
161
- hand_o_up: '\f0a6',
162
- hand_o_down: '\f0a7',
163
- arrow_circle_left: '\f0a8',
164
- arrow_circle_right: '\f0a9',
165
- arrow_circle_up: '\f0aa',
166
- arrow_circle_down: '\f0ab',
167
- globe: '\f0ac',
168
- wrench: '\f0ad',
169
- tasks: '\f0ae',
170
- filter: '\f0b0',
171
- briefcase: '\f0b1',
172
- arrows_alt: '\f0b2',
173
- users: '\f0c0',
174
- link: '\f0c1',
175
- cloud: '\f0c2',
176
- flask: '\f0c3',
177
- scissors: '\f0c4',
178
- files_o: '\f0c5',
179
- paperclip: '\f0c6',
180
- floppy_o: '\f0c7',
181
- square: '\f0c8',
182
- bars: '\f0c9',
183
- list_ul: '\f0ca',
184
- list_ol: '\f0cb',
185
- strikethrough: '\f0cc',
186
- underline: '\f0cd',
187
- table: '\f0ce',
188
- magic: '\f0d0',
189
- truck: '\f0d1',
190
- pinterest: '\f0d2',
191
- pinterest_square: '\f0d3',
192
- google_plus_square: '\f0d4',
193
- google_plus: '\f0d5',
194
- money: '\f0d6',
195
- caret_down: '\f0d7',
196
- caret_up: '\f0d8',
197
- caret_left: '\f0d9',
198
- caret_right: '\f0da',
199
- columns: '\f0db',
200
- sort: '\f0dc',
201
- sort_asc: '\f0dd',
202
- sort_desc: '\f0de',
203
- envelope: '\f0e0',
204
- linkedin: '\f0e1',
205
- undo: '\f0e2',
206
- gavel: '\f0e3',
207
- tachometer: '\f0e4',
208
- comment_o: '\f0e5',
209
- comments_o: '\f0e6',
210
- bolt: '\f0e7',
211
- sitemap: '\f0e8',
212
- umbrella: '\f0e9',
213
- clipboard: '\f0ea',
214
- lightbulb_o: '\f0eb',
215
- exchange: '\f0ec',
216
- cloud_download: '\f0ed',
217
- cloud_upload: '\f0ee',
218
- user_md: '\f0f0',
219
- stethoscope: '\f0f1',
220
- suitcase: '\f0f2',
221
- bell_o: '\f0a2',
222
- coffee: '\f0f4',
223
- cutlery: '\f0f5',
224
- file_text_o: '\f0f6',
225
- building_o: '\f0f7',
226
- hospital_o: '\f0f8',
227
- ambulance: '\f0f9',
228
- medkit: '\f0fa',
229
- fighter_jet: '\f0fb',
230
- beer: '\f0fc',
231
- h_square: '\f0fd',
232
- plus_square: '\f0fe',
233
- angle_double_left: '\f100',
234
- angle_double_right: '\f101',
235
- angle_double_up: '\f102',
236
- angle_double_down: '\f103',
237
- angle_left: '\f104',
238
- angle_right: '\f105',
239
- angle_up: '\f106',
240
- angle_down: '\f107',
241
- desktop: '\f108',
242
- laptop: '\f109',
243
- tablet: '\f10a',
244
- mobile: '\f10b',
245
- circle_o: '\f10c',
246
- quote_left: '\f10d',
247
- quote_right: '\f10e',
248
- spinner: '\f110',
249
- circle: '\f111',
250
- reply: '\f112',
251
- github_alt: '\f113',
252
- folder_o: '\f114',
253
- folder_open_o: '\f115',
254
- smile_o: '\f118',
255
- frown_o: '\f119',
256
- meh_o: '\f11a',
257
- gamepad: '\f11b',
258
- keyboard_o: '\f11c',
259
- flag_o: '\f11d',
260
- flag_checkered: '\f11e',
261
- terminal: '\f120',
262
- code: '\f121',
263
- reply_all: '\f122',
264
- mail_reply_all: '\f122',
265
- star_half_o: '\f123',
266
- location_arrow: '\f124',
267
- crop: '\f125',
268
- code_fork: '\f126',
269
- chain_broken: '\f127',
270
- question: '\f128',
271
- info: '\f129',
272
- exclamation: '\f12a',
273
- superscript: '\f12b',
274
- subscript: '\f12c',
275
- eraser: '\f12d',
276
- puzzle_piece: '\f12e',
277
- microphone: '\f130',
278
- microphone_slash: '\f131',
279
- shield: '\f132',
280
- calendar_o: '\f133',
281
- fire_extinguisher: '\f134',
282
- rocket: '\f135',
283
- maxcdn: '\f136',
284
- chevron_circle_left: '\f137',
285
- chevron_circle_right: '\f138',
286
- chevron_circle_up: '\f139',
287
- chevron_circle_down: '\f13a',
288
- html5: '\f13b',
289
- css3: '\f13c',
290
- anchor: '\f13d',
291
- unlock_alt: '\f13e',
292
- bullseye: '\f140',
293
- ellipsis_h: '\f141',
294
- ellipsis_v: '\f142',
295
- rss_square: '\f143',
296
- play_circle: '\f144',
297
- ticket: '\f145',
298
- minus_square: '\f146',
299
- minus_square_o: '\f147',
300
- level_up: '\f148',
301
- level_down: '\f149',
302
- check_square: '\f14a',
303
- pencil_square: '\f14b',
304
- external_link_square: '\f14c',
305
- share_square: '\f14d',
306
- compass: '\f14e',
307
- caret_square_o_down: '\f150',
308
- caret_square_o_up: '\f151',
309
- caret_square_o_right: '\f152',
310
- eur: '\f153',
311
- gbp: '\f154',
312
- usd: '\f155',
313
- inr: '\f156',
314
- jpy: '\f157',
315
- rub: '\f158',
316
- krw: '\f159',
317
- btc: '\f15a',
318
- file: '\f15b',
319
- file_text: '\f15c',
320
- sort_alpha_asc: '\f15d',
321
- sort_alpha_desc: '\f15e',
322
- sort_amount_asc: '\f160',
323
- sort_amount_desc: '\f161',
324
- sort_numeric_asc: '\f162',
325
- sort_numeric_desc: '\f163',
326
- thumbs_up: '\f164',
327
- thumbs_down: '\f165',
328
- youtube_square: '\f166',
329
- youtube: '\f167',
330
- xing: '\f168',
331
- xing_square: '\f169',
332
- youtube_play: '\f16a',
333
- dropbox: '\f16b',
334
- stack_overflow: '\f16c',
335
- instagram: '\f16d',
336
- flickr: '\f16e',
337
- adn: '\f170',
338
- bitbucket: '\f171',
339
- bitbucket_square: '\f172',
340
- tumblr: '\f173',
341
- tumblr_square: '\f174',
342
- long_arrow_down: '\f175',
343
- long_arrow_up: '\f176',
344
- long_arrow_left: '\f177',
345
- long_arrow_right: '\f178',
346
- apple: '\f179',
347
- windows: '\f17a',
348
- android: '\f17b',
349
- linux: '\f17c',
350
- dribbble: '\f17d',
351
- skype: '\f17e',
352
- foursquare: '\f180',
353
- trello: '\f181',
354
- female: '\f182',
355
- male: '\f183',
356
- gittip: '\f184',
357
- sun_o: '\f185',
358
- moon_o: '\f186',
359
- archive: '\f187',
360
- bug: '\f188',
361
- vk: '\f189',
362
- weibo: '\f18a',
363
- renren: '\f18b',
364
- pagelines: '\f18c',
365
- stack_exchange: '\f18d',
366
- arrow_circle_o_right: '\f18e',
367
- arrow_circle_o_left: '\f190',
368
- caret_square_o_left: '\f191',
369
- dot_circle_o: '\f192',
370
- wheelchair: '\f193',
371
- vimeo_square: '\f194',
372
- try: '\f195',
373
- plus_square_o: '\f196'
374
- }
375
- end
4
+ module Epub3
5
+ # Map of Font Awesome icon names to unicode characters
6
+ FontIconMap = {
7
+ glass: '\f000',
8
+ music: '\f001',
9
+ search: '\f002',
10
+ envelope_o: '\f003',
11
+ heart: '\f004',
12
+ star: '\f005',
13
+ star_o: '\f006',
14
+ user: '\f007',
15
+ film: '\f008',
16
+ th_large: '\f009',
17
+ th: '\f00a',
18
+ th_list: '\f00b',
19
+ check: '\f00c',
20
+ times: '\f00d',
21
+ search_plus: '\f00e',
22
+ search_minus: '\f010',
23
+ power_off: '\f011',
24
+ signal: '\f012',
25
+ cog: '\f013',
26
+ trash_o: '\f014',
27
+ home: '\f015',
28
+ file_o: '\f016',
29
+ clock_o: '\f017',
30
+ road: '\f018',
31
+ download: '\f019',
32
+ arrow_circle_o_down: '\f01a',
33
+ arrow_circle_o_up: '\f01b',
34
+ inbox: '\f01c',
35
+ play_circle_o: '\f01d',
36
+ repeat: '\f01e',
37
+ refresh: '\f021',
38
+ list_alt: '\f022',
39
+ lock: '\f023',
40
+ flag: '\f024',
41
+ headphones: '\f025',
42
+ volume_off: '\f026',
43
+ volume_down: '\f027',
44
+ volume_up: '\f028',
45
+ qrcode: '\f029',
46
+ barcode: '\f02a',
47
+ tag: '\f02b',
48
+ tags: '\f02c',
49
+ book: '\f02d',
50
+ bookmark: '\f02e',
51
+ print: '\f02f',
52
+ camera: '\f030',
53
+ font: '\f031',
54
+ bold: '\f032',
55
+ italic: '\f033',
56
+ text_height: '\f034',
57
+ text_width: '\f035',
58
+ align_left: '\f036',
59
+ align_center: '\f037',
60
+ align_right: '\f038',
61
+ align_justify: '\f039',
62
+ list: '\f03a',
63
+ outdent: '\f03b',
64
+ indent: '\f03c',
65
+ video_camera: '\f03d',
66
+ picture_o: '\f03e',
67
+ pencil: '\f040',
68
+ map_marker: '\f041',
69
+ adjust: '\f042',
70
+ tint: '\f043',
71
+ pencil_square_o: '\f044',
72
+ share_square_o: '\f045',
73
+ check_square_o: '\f046',
74
+ arrows: '\f047',
75
+ step_backward: '\f048',
76
+ fast_backward: '\f049',
77
+ backward: '\f04a',
78
+ play: '\f04b',
79
+ pause: '\f04c',
80
+ stop: '\f04d',
81
+ forward: '\f04e',
82
+ fast_forward: '\f050',
83
+ step_forward: '\f051',
84
+ eject: '\f052',
85
+ chevron_left: '\f053',
86
+ chevron_right: '\f054',
87
+ plus_circle: '\f055',
88
+ minus_circle: '\f056',
89
+ times_circle: '\f057',
90
+ check_circle: '\f058',
91
+ question_circle: '\f059',
92
+ info_circle: '\f05a',
93
+ crosshairs: '\f05b',
94
+ times_circle_o: '\f05c',
95
+ check_circle_o: '\f05d',
96
+ ban: '\f05e',
97
+ arrow_left: '\f060',
98
+ arrow_right: '\f061',
99
+ arrow_up: '\f062',
100
+ arrow_down: '\f063',
101
+ share: '\f064',
102
+ expand: '\f065',
103
+ compress: '\f066',
104
+ plus: '\f067',
105
+ minus: '\f068',
106
+ asterisk: '\f069',
107
+ exclamation_circle: '\f06a',
108
+ gift: '\f06b',
109
+ leaf: '\f06c',
110
+ fire: '\f06d',
111
+ eye: '\f06e',
112
+ eye_slash: '\f070',
113
+ exclamation_triangle: '\f071',
114
+ plane: '\f072',
115
+ calendar: '\f073',
116
+ random: '\f074',
117
+ comment: '\f075',
118
+ magnet: '\f076',
119
+ chevron_up: '\f077',
120
+ chevron_down: '\f078',
121
+ retweet: '\f079',
122
+ shopping_cart: '\f07a',
123
+ folder: '\f07b',
124
+ folder_open: '\f07c',
125
+ arrows_v: '\f07d',
126
+ arrows_h: '\f07e',
127
+ bar_chart_o: '\f080',
128
+ twitter_square: '\f081',
129
+ facebook_square: '\f082',
130
+ camera_retro: '\f083',
131
+ key: '\f084',
132
+ cogs: '\f085',
133
+ comments: '\f086',
134
+ thumbs_o_up: '\f087',
135
+ thumbs_o_down: '\f088',
136
+ star_half: '\f089',
137
+ heart_o: '\f08a',
138
+ sign_out: '\f08b',
139
+ linkedin_square: '\f08c',
140
+ thumb_tack: '\f08d',
141
+ external_link: '\f08e',
142
+ sign_in: '\f090',
143
+ trophy: '\f091',
144
+ github_square: '\f092',
145
+ upload: '\f093',
146
+ lemon_o: '\f094',
147
+ phone: '\f095',
148
+ square_o: '\f096',
149
+ bookmark_o: '\f097',
150
+ phone_square: '\f098',
151
+ twitter: '\f099',
152
+ facebook: '\f09a',
153
+ github: '\f09b',
154
+ unlock: '\f09c',
155
+ credit_card: '\f09d',
156
+ rss: '\f09e',
157
+ hdd_o: '\f0a0',
158
+ bullhorn: '\f0a1',
159
+ bell: '\f0f3',
160
+ certificate: '\f0a3',
161
+ hand_o_right: '\f0a4',
162
+ hand_o_left: '\f0a5',
163
+ hand_o_up: '\f0a6',
164
+ hand_o_down: '\f0a7',
165
+ arrow_circle_left: '\f0a8',
166
+ arrow_circle_right: '\f0a9',
167
+ arrow_circle_up: '\f0aa',
168
+ arrow_circle_down: '\f0ab',
169
+ globe: '\f0ac',
170
+ wrench: '\f0ad',
171
+ tasks: '\f0ae',
172
+ filter: '\f0b0',
173
+ briefcase: '\f0b1',
174
+ arrows_alt: '\f0b2',
175
+ users: '\f0c0',
176
+ link: '\f0c1',
177
+ cloud: '\f0c2',
178
+ flask: '\f0c3',
179
+ scissors: '\f0c4',
180
+ files_o: '\f0c5',
181
+ paperclip: '\f0c6',
182
+ floppy_o: '\f0c7',
183
+ square: '\f0c8',
184
+ bars: '\f0c9',
185
+ list_ul: '\f0ca',
186
+ list_ol: '\f0cb',
187
+ strikethrough: '\f0cc',
188
+ underline: '\f0cd',
189
+ table: '\f0ce',
190
+ magic: '\f0d0',
191
+ truck: '\f0d1',
192
+ pinterest: '\f0d2',
193
+ pinterest_square: '\f0d3',
194
+ google_plus_square: '\f0d4',
195
+ google_plus: '\f0d5',
196
+ money: '\f0d6',
197
+ caret_down: '\f0d7',
198
+ caret_up: '\f0d8',
199
+ caret_left: '\f0d9',
200
+ caret_right: '\f0da',
201
+ columns: '\f0db',
202
+ sort: '\f0dc',
203
+ sort_asc: '\f0dd',
204
+ sort_desc: '\f0de',
205
+ envelope: '\f0e0',
206
+ linkedin: '\f0e1',
207
+ undo: '\f0e2',
208
+ gavel: '\f0e3',
209
+ tachometer: '\f0e4',
210
+ comment_o: '\f0e5',
211
+ comments_o: '\f0e6',
212
+ bolt: '\f0e7',
213
+ sitemap: '\f0e8',
214
+ umbrella: '\f0e9',
215
+ clipboard: '\f0ea',
216
+ lightbulb_o: '\f0eb',
217
+ exchange: '\f0ec',
218
+ cloud_download: '\f0ed',
219
+ cloud_upload: '\f0ee',
220
+ user_md: '\f0f0',
221
+ stethoscope: '\f0f1',
222
+ suitcase: '\f0f2',
223
+ bell_o: '\f0a2',
224
+ coffee: '\f0f4',
225
+ cutlery: '\f0f5',
226
+ file_text_o: '\f0f6',
227
+ building_o: '\f0f7',
228
+ hospital_o: '\f0f8',
229
+ ambulance: '\f0f9',
230
+ medkit: '\f0fa',
231
+ fighter_jet: '\f0fb',
232
+ beer: '\f0fc',
233
+ h_square: '\f0fd',
234
+ plus_square: '\f0fe',
235
+ angle_double_left: '\f100',
236
+ angle_double_right: '\f101',
237
+ angle_double_up: '\f102',
238
+ angle_double_down: '\f103',
239
+ angle_left: '\f104',
240
+ angle_right: '\f105',
241
+ angle_up: '\f106',
242
+ angle_down: '\f107',
243
+ desktop: '\f108',
244
+ laptop: '\f109',
245
+ tablet: '\f10a',
246
+ mobile: '\f10b',
247
+ circle_o: '\f10c',
248
+ quote_left: '\f10d',
249
+ quote_right: '\f10e',
250
+ spinner: '\f110',
251
+ circle: '\f111',
252
+ reply: '\f112',
253
+ github_alt: '\f113',
254
+ folder_o: '\f114',
255
+ folder_open_o: '\f115',
256
+ smile_o: '\f118',
257
+ frown_o: '\f119',
258
+ meh_o: '\f11a',
259
+ gamepad: '\f11b',
260
+ keyboard_o: '\f11c',
261
+ flag_o: '\f11d',
262
+ flag_checkered: '\f11e',
263
+ terminal: '\f120',
264
+ code: '\f121',
265
+ reply_all: '\f122',
266
+ mail_reply_all: '\f122',
267
+ star_half_o: '\f123',
268
+ location_arrow: '\f124',
269
+ crop: '\f125',
270
+ code_fork: '\f126',
271
+ chain_broken: '\f127',
272
+ question: '\f128',
273
+ info: '\f129',
274
+ exclamation: '\f12a',
275
+ superscript: '\f12b',
276
+ subscript: '\f12c',
277
+ eraser: '\f12d',
278
+ puzzle_piece: '\f12e',
279
+ microphone: '\f130',
280
+ microphone_slash: '\f131',
281
+ shield: '\f132',
282
+ calendar_o: '\f133',
283
+ fire_extinguisher: '\f134',
284
+ rocket: '\f135',
285
+ maxcdn: '\f136',
286
+ chevron_circle_left: '\f137',
287
+ chevron_circle_right: '\f138',
288
+ chevron_circle_up: '\f139',
289
+ chevron_circle_down: '\f13a',
290
+ html5: '\f13b',
291
+ css3: '\f13c',
292
+ anchor: '\f13d',
293
+ unlock_alt: '\f13e',
294
+ bullseye: '\f140',
295
+ ellipsis_h: '\f141',
296
+ ellipsis_v: '\f142',
297
+ rss_square: '\f143',
298
+ play_circle: '\f144',
299
+ ticket: '\f145',
300
+ minus_square: '\f146',
301
+ minus_square_o: '\f147',
302
+ level_up: '\f148',
303
+ level_down: '\f149',
304
+ check_square: '\f14a',
305
+ pencil_square: '\f14b',
306
+ external_link_square: '\f14c',
307
+ share_square: '\f14d',
308
+ compass: '\f14e',
309
+ caret_square_o_down: '\f150',
310
+ caret_square_o_up: '\f151',
311
+ caret_square_o_right: '\f152',
312
+ eur: '\f153',
313
+ gbp: '\f154',
314
+ usd: '\f155',
315
+ inr: '\f156',
316
+ jpy: '\f157',
317
+ rub: '\f158',
318
+ krw: '\f159',
319
+ btc: '\f15a',
320
+ file: '\f15b',
321
+ file_text: '\f15c',
322
+ sort_alpha_asc: '\f15d',
323
+ sort_alpha_desc: '\f15e',
324
+ sort_amount_asc: '\f160',
325
+ sort_amount_desc: '\f161',
326
+ sort_numeric_asc: '\f162',
327
+ sort_numeric_desc: '\f163',
328
+ thumbs_up: '\f164',
329
+ thumbs_down: '\f165',
330
+ youtube_square: '\f166',
331
+ youtube: '\f167',
332
+ xing: '\f168',
333
+ xing_square: '\f169',
334
+ youtube_play: '\f16a',
335
+ dropbox: '\f16b',
336
+ stack_overflow: '\f16c',
337
+ instagram: '\f16d',
338
+ flickr: '\f16e',
339
+ adn: '\f170',
340
+ bitbucket: '\f171',
341
+ bitbucket_square: '\f172',
342
+ tumblr: '\f173',
343
+ tumblr_square: '\f174',
344
+ long_arrow_down: '\f175',
345
+ long_arrow_up: '\f176',
346
+ long_arrow_left: '\f177',
347
+ long_arrow_right: '\f178',
348
+ apple: '\f179',
349
+ windows: '\f17a',
350
+ android: '\f17b',
351
+ linux: '\f17c',
352
+ dribbble: '\f17d',
353
+ skype: '\f17e',
354
+ foursquare: '\f180',
355
+ trello: '\f181',
356
+ female: '\f182',
357
+ male: '\f183',
358
+ gittip: '\f184',
359
+ sun_o: '\f185',
360
+ moon_o: '\f186',
361
+ archive: '\f187',
362
+ bug: '\f188',
363
+ vk: '\f189',
364
+ weibo: '\f18a',
365
+ renren: '\f18b',
366
+ pagelines: '\f18c',
367
+ stack_exchange: '\f18d',
368
+ arrow_circle_o_right: '\f18e',
369
+ arrow_circle_o_left: '\f190',
370
+ caret_square_o_left: '\f191',
371
+ dot_circle_o: '\f192',
372
+ wheelchair: '\f193',
373
+ vimeo_square: '\f194',
374
+ try: '\f195',
375
+ plus_square_o: '\f196',
376
+ }
377
+ end
376
378
  end