spotlight-frontend 3.5.0-beta.1

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 (153) hide show
  1. package/LICENSE +13 -0
  2. package/README.md +114 -0
  3. package/app/assets/images/blacklight/arrow-alt-circle-left.svg +1 -0
  4. package/app/assets/images/blacklight/arrow-alt-circle-right.svg +1 -0
  5. package/app/assets/images/blacklight/arrow_back_ios.svg +1 -0
  6. package/app/assets/images/blacklight/arrow_forward_ios.svg +1 -0
  7. package/app/assets/images/blacklight/check.svg +1 -0
  8. package/app/assets/images/blacklight/check_circle.svg +1 -0
  9. package/app/assets/images/blacklight/chevron_right.svg +1 -0
  10. package/app/assets/images/blacklight/close.svg +1 -0
  11. package/app/assets/images/blacklight/edit.svg +1 -0
  12. package/app/assets/images/blacklight/error.svg +1 -0
  13. package/app/assets/images/blacklight/highlight_off.svg +1 -0
  14. package/app/assets/images/blacklight/info.svg +1 -0
  15. package/app/assets/images/blacklight/warning.svg +1 -0
  16. package/app/assets/images/blacklight/zoom_in.svg +1 -0
  17. package/app/assets/images/blacklight/zoom_out.svg +1 -0
  18. package/app/assets/images/spotlight/.keep +0 -0
  19. package/app/assets/images/spotlight/blocks/sir-trevor-icons.svg +320 -0
  20. package/app/assets/images/spotlight/default_browse_thumbnail.jpg +0 -0
  21. package/app/assets/images/spotlight/default_thumbnail.jpg +0 -0
  22. package/app/assets/images/spotlight/fallback/default.png +0 -0
  23. package/app/assets/javascripts/spotlight/admin/add_another.js +22 -0
  24. package/app/assets/javascripts/spotlight/admin/add_new_button.js +81 -0
  25. package/app/assets/javascripts/spotlight/admin/appearance.js +24 -0
  26. package/app/assets/javascripts/spotlight/admin/attachments.js +2 -0
  27. package/app/assets/javascripts/spotlight/admin/blacklight_configuration.js +63 -0
  28. package/app/assets/javascripts/spotlight/admin/block_mixins/autocompleteable.js +72 -0
  29. package/app/assets/javascripts/spotlight/admin/block_mixins/formable.js +78 -0
  30. package/app/assets/javascripts/spotlight/admin/block_mixins/plustextable.js +57 -0
  31. package/app/assets/javascripts/spotlight/admin/blocks/block.js +23 -0
  32. package/app/assets/javascripts/spotlight/admin/blocks/browse_block.js +87 -0
  33. package/app/assets/javascripts/spotlight/admin/blocks/browse_group_categories_block.js +88 -0
  34. package/app/assets/javascripts/spotlight/admin/blocks/iframe_block.js +34 -0
  35. package/app/assets/javascripts/spotlight/admin/blocks/link_to_search_block.js +16 -0
  36. package/app/assets/javascripts/spotlight/admin/blocks/oembed_block.js +40 -0
  37. package/app/assets/javascripts/spotlight/admin/blocks/pages_block.js +22 -0
  38. package/app/assets/javascripts/spotlight/admin/blocks/resources_block.js +145 -0
  39. package/app/assets/javascripts/spotlight/admin/blocks/rule_block.js +25 -0
  40. package/app/assets/javascripts/spotlight/admin/blocks/search_result_block.js +44 -0
  41. package/app/assets/javascripts/spotlight/admin/blocks/solr_documents_base_block.js +108 -0
  42. package/app/assets/javascripts/spotlight/admin/blocks/solr_documents_block.js +25 -0
  43. package/app/assets/javascripts/spotlight/admin/blocks/solr_documents_carousel_block.js +103 -0
  44. package/app/assets/javascripts/spotlight/admin/blocks/solr_documents_embed_block.js +17 -0
  45. package/app/assets/javascripts/spotlight/admin/blocks/solr_documents_features_block.js +41 -0
  46. package/app/assets/javascripts/spotlight/admin/blocks/solr_documents_grid_block.js +14 -0
  47. package/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +145 -0
  48. package/app/assets/javascripts/spotlight/admin/catalog_edit.js +16 -0
  49. package/app/assets/javascripts/spotlight/admin/copy_email_addresses.js +9 -0
  50. package/app/assets/javascripts/spotlight/admin/crop.es6 +310 -0
  51. package/app/assets/javascripts/spotlight/admin/croppable.js +25 -0
  52. package/app/assets/javascripts/spotlight/admin/edit_in_place.js +54 -0
  53. package/app/assets/javascripts/spotlight/admin/exhibit_tag_autocomplete.js +37 -0
  54. package/app/assets/javascripts/spotlight/admin/exhibits.js +58 -0
  55. package/app/assets/javascripts/spotlight/admin/form_observer.js +86 -0
  56. package/app/assets/javascripts/spotlight/admin/iiif.es6 +54 -0
  57. package/app/assets/javascripts/spotlight/admin/index.js +16 -0
  58. package/app/assets/javascripts/spotlight/admin/locks.js +12 -0
  59. package/app/assets/javascripts/spotlight/admin/multi_image_selector.js +158 -0
  60. package/app/assets/javascripts/spotlight/admin/pages.js.erb +40 -0
  61. package/app/assets/javascripts/spotlight/admin/progress_monitor.js +148 -0
  62. package/app/assets/javascripts/spotlight/admin/readonly_checkbox.js +6 -0
  63. package/app/assets/javascripts/spotlight/admin/search_typeahead.js +108 -0
  64. package/app/assets/javascripts/spotlight/admin/select_related_input.js +34 -0
  65. package/app/assets/javascripts/spotlight/admin/sir-trevor/block_controls.js +120 -0
  66. package/app/assets/javascripts/spotlight/admin/sir-trevor/block_limits.js +37 -0
  67. package/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +120 -0
  68. package/app/assets/javascripts/spotlight/admin/spotlight_nestable.js +72 -0
  69. package/app/assets/javascripts/spotlight/admin/tabs.js +6 -0
  70. package/app/assets/javascripts/spotlight/admin/translation_progress.js +23 -0
  71. package/app/assets/javascripts/spotlight/admin/users.js +79 -0
  72. package/app/assets/javascripts/spotlight/application.js +14 -0
  73. package/app/assets/javascripts/spotlight/spotlight.js +23 -0
  74. package/app/assets/javascripts/spotlight/user/analytics.js +9 -0
  75. package/app/assets/javascripts/spotlight/user/browse_group_categories.js +59 -0
  76. package/app/assets/javascripts/spotlight/user/carousel.js +3 -0
  77. package/app/assets/javascripts/spotlight/user/clear_form_button.js +27 -0
  78. package/app/assets/javascripts/spotlight/user/index.js +8 -0
  79. package/app/assets/javascripts/spotlight/user/report_a_problem.js +39 -0
  80. package/app/assets/javascripts/spotlight/user/zpr_links.js.erb +45 -0
  81. package/app/assets/stylesheets/spotlight/_accessibility.scss +8 -0
  82. package/app/assets/stylesheets/spotlight/_attachments.css +4 -0
  83. package/app/assets/stylesheets/spotlight/_blacklight_configuration.scss +82 -0
  84. package/app/assets/stylesheets/spotlight/_blacklight_overrides.scss +21 -0
  85. package/app/assets/stylesheets/spotlight/_bootstrap_overrides.scss +105 -0
  86. package/app/assets/stylesheets/spotlight/_breadcrumbs.scss +6 -0
  87. package/app/assets/stylesheets/spotlight/_browse.scss +158 -0
  88. package/app/assets/stylesheets/spotlight/_catalog.scss +161 -0
  89. package/app/assets/stylesheets/spotlight/_collapse_toggle.scss +14 -0
  90. package/app/assets/stylesheets/spotlight/_croppable.scss +4 -0
  91. package/app/assets/stylesheets/spotlight/_curation.scss +224 -0
  92. package/app/assets/stylesheets/spotlight/_edit_in_place.scss +9 -0
  93. package/app/assets/stylesheets/spotlight/_exhibit_admin.scss +81 -0
  94. package/app/assets/stylesheets/spotlight/_exhibit_navbar.scss +10 -0
  95. package/app/assets/stylesheets/spotlight/_exhibits_index.scss +147 -0
  96. package/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +269 -0
  97. package/app/assets/stylesheets/spotlight/_footer.scss +12 -0
  98. package/app/assets/stylesheets/spotlight/_header.scss +155 -0
  99. package/app/assets/stylesheets/spotlight/_item_text_block.scss +50 -0
  100. package/app/assets/stylesheets/spotlight/_mixins.scss +17 -0
  101. package/app/assets/stylesheets/spotlight/_modals.scss +3 -0
  102. package/app/assets/stylesheets/spotlight/_multi_image_selector.scss +22 -0
  103. package/app/assets/stylesheets/spotlight/_multi_up_item_grid.scss +63 -0
  104. package/app/assets/stylesheets/spotlight/_nestable.scss +124 -0
  105. package/app/assets/stylesheets/spotlight/_pages.scss +282 -0
  106. package/app/assets/stylesheets/spotlight/_report_a_problem.scss +14 -0
  107. package/app/assets/stylesheets/spotlight/_sir-trevor_overrides.scss +87 -0
  108. package/app/assets/stylesheets/spotlight/_slideshow_block.scss +87 -0
  109. package/app/assets/stylesheets/spotlight/_spotlight.scss +49 -0
  110. package/app/assets/stylesheets/spotlight/_translations.scss +86 -0
  111. package/app/assets/stylesheets/spotlight/_upload.scss +0 -0
  112. package/app/assets/stylesheets/spotlight/_uploaded_items_block.scss +7 -0
  113. package/app/assets/stylesheets/spotlight/_utilities.scss +7 -0
  114. package/app/assets/stylesheets/spotlight/_variables.scss +42 -0
  115. package/app/assets/stylesheets/spotlight/_variables_bootstrap.scss +7 -0
  116. package/app/assets/stylesheets/spotlight/_view_larger.scss +22 -0
  117. package/app/assets/stylesheets/spotlight/browse_group_categories_block.scss +92 -0
  118. package/app/assets/stylesheets/spotlight/typeahead.css +77 -0
  119. package/package.json +29 -0
  120. package/vendor/assets/images/sir-trevor-icons.svg +263 -0
  121. package/vendor/assets/javascripts/Leaflet.Editable.js +1917 -0
  122. package/vendor/assets/javascripts/MutationObserver.js +625 -0
  123. package/vendor/assets/javascripts/Path.Drag.js +137 -0
  124. package/vendor/assets/javascripts/bootstrap-tagsinput.js +530 -0
  125. package/vendor/assets/javascripts/eventable.js +205 -0
  126. package/vendor/assets/javascripts/jquery.serializejson.js +234 -0
  127. package/vendor/assets/javascripts/jquery.waitforimages.min.js +2 -0
  128. package/vendor/assets/javascripts/leaflet-iiif.js +323 -0
  129. package/vendor/assets/javascripts/nestable.js +645 -0
  130. package/vendor/assets/javascripts/parameterize.js +137 -0
  131. package/vendor/assets/javascripts/polyfill.min.js +4 -0
  132. package/vendor/assets/javascripts/sir-trevor.js +21639 -0
  133. package/vendor/assets/javascripts/tiny-slider.js +3218 -0
  134. package/vendor/assets/javascripts/typeahead.bundle.min.js +7 -0
  135. package/vendor/assets/stylesheets/bootstrap-tagsinput.css +46 -0
  136. package/vendor/assets/stylesheets/leaflet-areaselect.css +15 -0
  137. package/vendor/assets/stylesheets/sir-trevor/_icons.scss +6 -0
  138. package/vendor/assets/stylesheets/sir-trevor/_variables.scss +22 -0
  139. package/vendor/assets/stylesheets/sir-trevor/base.scss +17 -0
  140. package/vendor/assets/stylesheets/sir-trevor/block-addition-top.scss +95 -0
  141. package/vendor/assets/stylesheets/sir-trevor/block-addition.scss +72 -0
  142. package/vendor/assets/stylesheets/sir-trevor/block-controls.scss +34 -0
  143. package/vendor/assets/stylesheets/sir-trevor/block-positioner.scss +34 -0
  144. package/vendor/assets/stylesheets/sir-trevor/block-replacer.scss +43 -0
  145. package/vendor/assets/stylesheets/sir-trevor/block-ui.scss +120 -0
  146. package/vendor/assets/stylesheets/sir-trevor/block.scss +300 -0
  147. package/vendor/assets/stylesheets/sir-trevor/errors.scss +21 -0
  148. package/vendor/assets/stylesheets/sir-trevor/format-bar.scss +65 -0
  149. package/vendor/assets/stylesheets/sir-trevor/inputs.scss +45 -0
  150. package/vendor/assets/stylesheets/sir-trevor/main.scss +24 -0
  151. package/vendor/assets/stylesheets/sir-trevor/patterns/ui-popup.scss +38 -0
  152. package/vendor/assets/stylesheets/sir-trevor/utils.scss +10 -0
  153. package/vendor/assets/stylesheets/tiny-slider.css +1 -0
package/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright 2014 The Board of Trustees of the Leland Stanford Junior University.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,114 @@
1
+ spotlight
2
+ =========
3
+
4
+ ![CI](https://github.com/projectblacklight/spotlight/workflows/CI/badge.svg) | [![Gem Version](https://badge.fury.io/rb/blacklight-spotlight.png)](http://badge.fury.io/rb/blacklight-spotlight) | [Release Notes](https://github.com/projectblacklight/spotlight/releases) | [Design Documents](https://github.com/projectblacklight/spotlight/releases/tag/v0.0.0)
5
+
6
+ Spotlight is open source software that enables librarians, curators, and other content experts to easily build feature-rich websites that showcase collections and objects from a digital repository, uploaded items, or a combination of the two. Spotlight is a plug-in for [Blacklight](https://github.com/projectblacklight/blacklight), an open source, Ruby on Rails Engine that provides a basic discovery interface for searching an Apache Solr index.
7
+
8
+ Read more about what Spotlight is, our motivations for creating it, and how to install and configure it in the [wiki pages](https://github.com/projectblacklight/spotlight/wiki). You might also want to take a look at our demo videos, especially the [tour of a completed Spotlight exhibit](https://www.youtube.com/watch?v=_A7vTbbiF4g) and the walkthrough of [building an exhibit with Spotlight](https://www.youtube.com/watch?v=qPJtgajJ4ic).
9
+
10
+ ## Requirements
11
+
12
+ 1. Ruby (2.7 or greater)
13
+ 2. Rails (5.2 or greater)
14
+ 3. Java (7 or greater) *for Solr*
15
+ 4. ImageMagick (http://www.imagemagick.org/script/index.php) due to [carrierwave](https://github.com/carrierwaveuploader/carrierwave#adding-versions)
16
+
17
+ ## Installation
18
+
19
+ To bootstrap a new Rails application:
20
+
21
+ ```
22
+ $ rails new app-name -m https://raw.githubusercontent.com/projectblacklight/spotlight/main/template.rb
23
+ ```
24
+
25
+ or from an existing Rails application:
26
+
27
+ ```
28
+ $ rails app:template LOCATION=https://raw.githubusercontent.com/projectblacklight/spotlight/main/template.rb
29
+ ```
30
+
31
+ *During this process you will be prompted to enter an initial administrator email and password (this is a super-admin that can administer any exhibit in the installation).* If you choose not to create one, the first user will be given administrative privileges.
32
+
33
+ Change directories to your new application:
34
+
35
+ ```
36
+ $ cd app-name
37
+ ```
38
+
39
+ Run the database migrations:
40
+
41
+ ```
42
+ $ rake db:migrate
43
+ ```
44
+
45
+ Start Solr (possibly using `solr_wrapper` in development or testing):
46
+
47
+ ```
48
+ $ solr_wrapper
49
+ ```
50
+
51
+ and the Rails development server:
52
+
53
+ ```
54
+ $ rails server
55
+ ```
56
+
57
+ Go to http://localhost:3000 in your browser.
58
+
59
+ ## Configuration
60
+
61
+ ### Default ActionMailer configuration
62
+
63
+ Spotlight introduces functionality that depends on being able to send emails to exhibit curators and contacts. Be sure to configure your application's environments appropriately (see the Rails Guide for [Action Mailer Configuration](http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration)).
64
+
65
+ See the [Spotlight wiki](https://github.com/projectblacklight/spotlight/wiki) for more detailed information on configuring Spotlight.
66
+
67
+ # Developing Spotlight
68
+
69
+ Spotlight:
70
+
71
+ * is a Rails engine and needs to be used in the context of a Rails application. We use [engine_cart](https://github.com/cbeer/engine_cart) to create an internal test application at .internal_test_app/
72
+ * uses Solr as part of its integration tests. We use [solr_wrapper](https://github.com/cbeer/solr_wrapper) to manage the Solr instance used for development and test.
73
+
74
+ Our `$ rake ci` and `$ rake spotlight:server` tasks utilize Solr and the testing rails app automatically.
75
+
76
+ See more detailed instructions for development environment setup at ["Contributing to Spotlight"](https://github.com/projectblacklight/spotlight/wiki/Contributing-to-Spotlight)
77
+
78
+ ## With Docker
79
+
80
+ ```sh
81
+ # because of how docker-compose handles named images, running `docker-compose up --build` will error when the Rails images have not been built locally
82
+ docker-compose build
83
+ docker-compose up
84
+ ```
85
+
86
+ ## Tests
87
+
88
+ ### Run all the tests:
89
+
90
+ ```
91
+ $ rake
92
+ ```
93
+
94
+ This utilizes Solr and the testing rails app automatically.
95
+
96
+ ## Translations
97
+
98
+ Spotlight ships with [`i18n-tasks`](https://github.com/glebm/i18n-tasks) to help manage translations. To run a translation health check:
99
+
100
+ ```sh
101
+ $ bundle exec i18n-tasks health
102
+ ```
103
+
104
+ See [developer-facing instructions for enabling translation](https://github.com/projectblacklight/spotlight/wiki/Translations) on the wiki.
105
+
106
+ ## Community
107
+
108
+
109
+ - Join us on the [code4lib Slack](https://code4lib.org/irc)
110
+ - **#blacklight** - a developer-focused channel for discussing implementation, customization, and other software concerns in the larger [Blacklight community](http://projectblacklight.org/)
111
+ - **#spotlight-service** - a service-focused channel for people who support exhibit-builders at institutions already using Spotlight
112
+ - Google Groups
113
+ - [Blacklight Development Google group](https://groups.google.com/forum/#!forum/blacklight-development)
114
+ - [Spotlight Community Group](https://groups.google.com/forum/#!forum/spotlight-community) (equivalent to #spotlight-service)
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path opacity=".87" fill="none" d="M0 0h24v24H0V0z"/><path d="M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path opacity=".87" fill="none" d="M24 24H0V0h24v24z"/><path d="M6.49 20.13l1.77 1.77 9.9-9.9-9.9-9.9-1.77 1.77L14.62 12l-8.13 8.13z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7V9z"/></svg>
File without changes
@@ -0,0 +1,320 @@
1
+ <svg style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <defs>
3
+ <symbol id="code" viewBox="0 0 1024 1024">
4
+ <title>code</title>
5
+ <path class="path1" d="M769.919 340.191l186.982 186.565-0.012-28.984-186.288 186.171 28.954 28.972 200.795-200.669-201.501-201.051-28.931 28.995z"></path>
6
+ <path class="path2" d="M223.717 311.196l-201.501 201.051 200.795 200.669 28.954-28.972-186.288-186.171-0.012 28.984 186.982-186.565-28.931-28.995z"></path>
7
+ <path class="path3" d="M394.14 813.132l269.058-604.314-37.419-16.66-277.388 623.023 37.419 16.66 8.33-18.709z"></path>
8
+ </symbol>
9
+ <symbol id="fmt-unlink" viewBox="0 0 1024 1024">
10
+ <title>fmt-unlink</title>
11
+ <path class="path1" d="M429.58 691.533l-30.72 31.469c-13.487 12.987-29.721 19.481-48.702 19.481s-35.216-6.494-48.702-19.481c-6.494-6.494-11.489-13.861-14.985-22.103s-5.245-17.108-5.245-26.599c0-8.991 1.748-17.608 5.245-25.85s8.492-15.61 14.985-22.103l113.889-113.14c11.988-11.489 27.723-22.728 47.204-33.717s37.463-8.242 53.947 8.242c7.493 6.993 16.484 10.49 26.974 10.49s19.231-3.746 26.224-11.239c7.493-7.493 11.239-16.484 11.239-26.974s-3.746-19.481-11.239-26.974c-27.473-26.974-60.066-38.213-97.78-33.717s-74.302 24.476-109.768 59.941l-114.638 113.14c-13.487 13.986-23.977 29.721-31.469 47.204s-11.239 35.715-11.239 54.697c0 19.481 3.746 37.963 11.239 55.446s17.982 33.217 31.469 47.204c13.986 13.986 29.971 24.476 47.953 31.469s36.215 10.49 54.697 10.49c18.482 0 36.589-3.497 54.322-10.49s33.592-17.483 47.579-31.469l31.469-31.469c7.493-6.993 11.239-15.735 11.239-26.224s-3.746-19.481-11.239-26.974c-7.493-7.493-16.484-11.239-26.974-11.239s-19.481 3.497-26.974 10.49v0 0zM776.492 250.963c-29.971-29.471-63.438-44.831-100.402-46.080s-69.182 11.614-96.656 38.587l-38.962 38.962c-7.493 6.993-11.239 15.735-11.239 26.224s3.746 19.481 11.239 26.974c7.493 7.493 16.484 11.239 26.974 11.239s19.481-3.497 26.974-10.49l38.213-38.962c14.486-13.986 30.096-19.231 46.829-15.735s31.095 11.239 43.083 23.227c6.494 6.494 11.489 13.861 14.985 22.103s5.245 17.108 5.245 26.599c0 8.991-1.748 17.608-5.245 25.85s-8.492 15.61-14.985 22.103l-121.382 120.632c-27.973 27.473-49.202 38.837-63.688 34.092s-24.476-10.115-29.971-16.109c-7.493-6.993-16.484-10.49-26.974-10.49s-19.231 3.746-26.224 11.239c-7.493 7.493-11.239 16.484-11.239 26.974s3.746 19.231 11.239 26.224c12.488 12.987 25.975 22.603 40.461 28.847s29.471 9.366 44.956 9.366c18.482 0 37.463-4.62 56.944-13.862s38.712-23.352 57.694-42.334l122.131-120.632c13.487-13.987 23.976-29.721 31.469-47.204s11.239-35.715 11.239-54.697c0-19.481-3.746-37.963-11.239-55.446s-17.982-33.217-31.469-47.204v0 0z"></path>
12
+ <path class="path2" d="M219.429 555.886h629.029v-87.771h-672.914v87.771h43.886z"></path>
13
+ </symbol>
14
+ <symbol id="add-block" viewBox="0 0 1024 1024">
15
+ <title>add-block</title>
16
+ <path class="path1" d="M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512v0zM512 986.764c-262.205 0-474.764-212.559-474.764-474.764s212.559-474.764 474.764-474.764c262.205 0 474.764 212.559 474.764 474.764s-212.559 474.764-474.764 474.764v0z"></path>
17
+ <path class="path2" d="M763.345 521.309c0 11.038-1.183 20.498-3.548 28.382s-9.329 11.826-20.892 11.826h-177.388v178.177c0 11.038-3.942 17.739-11.826 20.104s-17.345 3.548-28.382 3.548c-11.038 0-20.498-1.183-28.382-3.548s-11.826-9.066-11.826-20.104v-178.177h-177.388c-11.563 0-18.527-3.942-20.892-11.826s-3.548-17.345-3.548-28.382c0-11.037 1.183-20.498 3.548-28.382s9.329-11.826 20.892-11.826h177.388v-177.388c0-11.037 3.942-17.87 11.826-20.498s17.345-3.942 28.382-3.942c11.037 0 20.498 1.314 28.382 3.942s11.826 9.461 11.826 20.498v177.388h177.388c11.563 0 18.527 3.942 20.892 11.826s3.548 17.345 3.548 28.382v0 0z"></path>
18
+ </symbol>
19
+ <symbol id="fmt-bold" viewBox="0 0 1024 1024">
20
+ <title>fmt-bold</title>
21
+ <path class="path1" d="M442.286 737.28l-36.343-119.314h-182.743l-36.343 119.314h-114.514l176.914-503.314h129.943l177.6 503.314h-114.514zM380.571 528.823c-33.6-108.115-52.514-169.257-56.743-183.429s-7.257-25.371-9.086-33.6c-7.543 29.257-29.143 101.599-64.8 217.029h130.629zM855.086 737.28l-20.229-52.114h-2.743c-17.6 22.172-35.714 37.543-54.343 46.114s-42.914 12.857-72.857 12.857c-36.8 0-65.771-10.514-86.914-31.543s-31.714-50.971-31.714-89.829c0-40.686 14.228-70.686 42.686-90s71.371-30 128.743-32.057l66.514-2.057v-16.8c0-38.857-19.886-58.286-59.657-58.286-30.629 0-66.628 9.257-108 27.771l-34.629-70.629c44.115-23.086 93.028-34.629 146.743-34.629 51.429 0 90.857 11.2 118.286 33.6s41.143 56.457 41.143 102.171v255.429h-73.029zM824.229 559.68l-40.457 1.371c-30.4 0.914-53.028 6.4-67.886 16.457s-22.286 25.371-22.286 45.943c0 29.486 16.914 44.229 50.743 44.229 24.229 0 43.6-6.971 58.114-20.914s21.771-32.457 21.771-55.543v-31.543z"></path>
22
+ </symbol>
23
+ <symbol id="fmt-italic" viewBox="0 0 1024 1024">
24
+ <title>fmt-italic</title>
25
+ <path class="path1" d="M426.743 577.851h-170.057l-84 159.429h-64.8l273.943-501.257h59.657l63.086 501.257h-58.286l-19.543-159.429zM420.571 524.366l-12-102.514c-5.486-40.914-8.8-80.914-9.943-120-8.457 20.114-17.657 40.114-27.6 60s-38.457 74.057-85.543 162.514h135.086zM756.914 354.651c21.029 0 39.771 5.657 56.229 16.971s29.257 27.6 38.4 48.857h3.771l22.971-58.971h43.543l-79.886 375.771h-45.6l8.914-71.657h-2.743c-40.915 52.343-84 78.514-129.257 78.514-31.772 0-56.686-11.314-74.743-33.943s-27.086-53.6-27.086-92.914c0-47.543 8.114-91.657 24.343-132.343s38.628-72.571 67.2-95.657c28.572-23.086 59.886-34.629 93.943-34.629v0zM691.771 696.48c22.172 0 44.228-10.571 66.171-31.714s39.771-48.686 53.486-82.629c13.714-33.943 20.571-67.943 20.571-102 0-23.543-6.4-42.286-19.2-56.229s-29.6-20.914-50.4-20.914c-23.772 0-45.886 9.828-66.343 29.486s-36.514 46.286-48.171 79.886c-11.657 33.6-17.486 69.028-17.486 106.286 0 26.057 5.371 45.543 16.114 58.457s25.828 19.371 45.257 19.371v0z"></path>
26
+ </symbol>
27
+ <symbol id="fmt-link" viewBox="0 0 1024 1024">
28
+ <title>fmt-link</title>
29
+ <path class="path1" d="M400.323 691.533l-30.72 31.469c-13.487 12.987-29.721 19.481-48.702 19.481s-35.216-6.494-48.702-19.481c-6.494-6.494-11.489-13.861-14.985-22.103s-5.245-17.108-5.245-26.599c0-8.991 1.748-17.608 5.245-25.85s8.492-15.61 14.985-22.103l113.889-113.14c11.988-11.489 27.723-22.728 47.204-33.717s37.463-8.242 53.947 8.242c7.493 6.993 16.484 10.49 26.974 10.49s19.231-3.746 26.224-11.239c7.493-7.493 11.239-16.484 11.239-26.974s-3.746-19.481-11.239-26.974c-27.473-26.974-60.066-38.213-97.78-33.717s-74.302 24.476-109.768 59.941l-114.638 113.14c-13.487 13.986-23.977 29.721-31.469 47.204s-11.239 35.715-11.239 54.697c0 19.481 3.746 37.963 11.239 55.446s17.982 33.217 31.469 47.204c13.986 13.986 29.971 24.476 47.953 31.469s36.215 10.49 54.697 10.49c18.482 0 36.589-3.497 54.322-10.49s33.592-17.483 47.579-31.469l31.469-31.469c7.493-6.993 11.239-15.735 11.239-26.224s-3.746-19.481-11.239-26.974c-7.493-7.493-16.484-11.239-26.974-11.239s-19.481 3.497-26.974 10.49v0zM747.235 250.963c-29.971-29.471-63.438-44.831-100.402-46.080s-69.182 11.614-96.656 38.587l-38.962 38.962c-7.493 6.993-11.239 15.735-11.239 26.224s3.746 19.481 11.239 26.974c7.493 7.493 16.484 11.239 26.974 11.239s19.481-3.497 26.974-10.49l38.213-38.962c14.486-13.986 30.096-19.231 46.829-15.735s31.095 11.239 43.083 23.227c6.494 6.494 11.489 13.861 14.985 22.103s5.245 17.108 5.245 26.599c0 8.991-1.748 17.608-5.245 25.85s-8.492 15.61-14.985 22.103l-121.382 120.632c-27.973 27.473-49.202 38.837-63.688 34.092s-24.476-10.115-29.971-16.109c-7.493-6.993-16.484-10.49-26.974-10.49s-19.231 3.746-26.224 11.239c-7.493 7.493-11.239 16.484-11.239 26.974s3.746 19.231 11.239 26.224c12.488 12.987 25.975 22.603 40.461 28.847s29.471 9.366 44.956 9.366c18.482 0 37.463-4.62 56.944-13.862s38.712-23.352 57.694-42.334l122.131-120.632c13.487-13.987 23.976-29.721 31.469-47.204s11.239-35.715 11.239-54.697c0-19.481-3.746-37.963-11.239-55.446s-17.982-33.217-31.469-47.204v0z"></path>
30
+ </symbol>
31
+ <symbol id="fmt-quote" viewBox="0 0 1024 1024">
32
+ <title>fmt-quote</title>
33
+ <path class="path1" d="M609.098 688.034l94.84-194.197h-144.519v-289.037h289.037v289.037l-94.84 194.197h-144.518zM222.963 688.034l97.098-194.197h-144.518v-289.037h289.037v289.037l-97.098 194.197h-144.519z"></path>
34
+ </symbol>
35
+ <symbol id="fmt-heading" viewBox="0 0 1024 1024">
36
+ <title>fmt-heading</title>
37
+ <path class="path1" d="M566.9 737.28h-105.943v-216.343h-198.514v216.343h-106.286v-501.257h106.286v196.457h198.514v-196.457h105.943v501.257zM847.871 737.28h-79.457v-217.543l0.771-35.743 1.286-39.086c-13.2 13.2-22.371 21.857-27.514 25.971l-43.2 34.714-38.314-47.829 121.114-96.429h65.314v375.943z"></path>
38
+ </symbol>
39
+ <symbol id="fmt-quote2" viewBox="0 0 1024 1024">
40
+ <title>fmt-quote2</title>
41
+ <path class="path1" d="M609.098 688.034l94.84-194.197h-144.519v-289.037h289.037v289.037l-94.84 194.197h-144.518zM222.963 688.034l97.098-194.197h-144.518v-289.037h289.037v289.037l-97.098 194.197h-144.519z"></path>
42
+ </symbol>
43
+ <symbol id="move" viewBox="0 0 1057 1024">
44
+ <title>move</title>
45
+ <path class="path1" d="M231.226 115.613c0 63.851-51.762 115.613-115.613 115.613s-115.613-51.762-115.613-115.613c0-63.851 51.762-115.613 115.613-115.613s115.613 51.762 115.613 115.613z"></path>
46
+ <path class="path2" d="M627.613 115.613c0 63.851-51.762 115.613-115.613 115.613s-115.613-51.762-115.613-115.613c0-63.851 51.762-115.613 115.613-115.613s115.613 51.762 115.613 115.613z"></path>
47
+ <path class="path3" d="M1057.032 115.613c0 63.851-51.762 115.613-115.613 115.613s-115.613-51.762-115.613-115.613c0-63.851 51.762-115.613 115.613-115.613s115.613 51.762 115.613 115.613z"></path>
48
+ <path class="path4" d="M627.613 512c0 63.851-51.762 115.613-115.613 115.613s-115.613-51.762-115.613-115.613c0-63.851 51.762-115.613 115.613-115.613s115.613 51.762 115.613 115.613z"></path>
49
+ <path class="path5" d="M231.226 512c0 63.851-51.762 115.613-115.613 115.613s-115.613-51.762-115.613-115.613c0-63.851 51.762-115.613 115.613-115.613s115.613 51.762 115.613 115.613z"></path>
50
+ <path class="path6" d="M231.226 908.387c0 63.851-51.762 115.613-115.613 115.613s-115.613-51.762-115.613-115.613c0-63.851 51.762-115.613 115.613-115.613s115.613 51.762 115.613 115.613z"></path>
51
+ </symbol>
52
+ <symbol id="minus" viewBox="0 0 1138 1024">
53
+ <title>minus</title>
54
+ <path class="path1" d="M0 398.222v227.556h1137.778v-227.556h-1137.778z"></path>
55
+ </symbol>
56
+ <symbol id="plus" viewBox="0 0 1024 1024">
57
+ <title>plus</title>
58
+ <path class="path1" d="M409.6 1024h204.8v-1024h-204.8v1024z"></path>
59
+ <path class="path2" d="M0 409.6v204.8h1024v-204.8h-1024z"></path>
60
+ </symbol>
61
+ <symbol id="rotate" viewBox="0 0 731 1024">
62
+ <title>rotate</title>
63
+ <path class="path1" d="M36.571 292.571l292.571-292.571v585.143z"></path>
64
+ <path class="path2" d="M329.143 219.429c222.176 0 402.286 180.109 402.286 402.286s-180.109 402.286-402.286 402.286c-116.682 0-221.761-49.676-295.243-129.033l107.361-99.365c46.761 50.5 113.63 82.112 187.882 82.112 141.385 0 256-114.615 256-256s-114.615-256-256-256v-146.286z"></path>
65
+ </symbol>
66
+ <symbol id="tick" viewBox="0 0 1229 1024">
67
+ <title>tick</title>
68
+ <path class="path1" d="M409.211 705.049l-233.625-247.667-144.815 144.815 377.227 377.226 790.033-790.033-144.815-144.815-644.004 660.473z"></path>
69
+ </symbol>
70
+ <symbol id="bottom" viewBox="0 0 931 1024">
71
+ <title>bottom</title>
72
+ <path class="path1" d="M0 1024v-93.091h930.909v93.091h-930.909z"></path>
73
+ <path class="path2" d="M418.909 930.909v-930.909h93.091v930.909h-93.091z"></path>
74
+ <path class="path3" d="M465.455 977.455l279.273-279.273h-558.545z"></path>
75
+ </symbol>
76
+ <symbol id="center-align" viewBox="0 0 1138 1024">
77
+ <title>center-align</title>
78
+ <path class="path1" d="M0 0v113.778h1137.778v-113.778h-1137.778z"></path>
79
+ <path class="path2" d="M0 455.111v113.778h1137.778v-113.778h-1137.778z"></path>
80
+ <path class="path3" d="M0 910.222v113.778h1137.778v-113.778h-1137.778z"></path>
81
+ <path class="path4" d="M227.556 227.556v113.778h682.667v-113.778h-682.667z"></path>
82
+ <path class="path5" d="M227.556 682.667v113.778h682.667v-113.778h-682.667z"></path>
83
+ </symbol>
84
+ <symbol id="left-align" viewBox="0 0 1138 1024">
85
+ <title>left-align</title>
86
+ <path class="path1" d="M0 0v113.778h1137.778v-113.778h-1137.778z"></path>
87
+ <path class="path2" d="M0 455.111v113.778h1137.778v-113.778h-1137.778z"></path>
88
+ <path class="path3" d="M0 910.222v113.778h1137.778v-113.778h-1137.778z"></path>
89
+ <path class="path4" d="M0 227.556v113.778h682.667v-113.778h-682.667z"></path>
90
+ <path class="path5" d="M0 682.667v113.778h682.667v-113.778h-682.667z"></path>
91
+ </symbol>
92
+ <symbol id="middle" viewBox="0 0 788 1024">
93
+ <title>middle</title>
94
+ <path class="path1" d="M0 472.615v78.769h787.692v-78.769h-787.692z"></path>
95
+ <path class="path2" d="M354.462 0v1024h78.769v-1024h-78.769z"></path>
96
+ <path class="path3" d="M393.846 512l236.308-236.308h-472.615z"></path>
97
+ <path class="path4" d="M393.846 512l236.308 236.308h-472.615z"></path>
98
+ </symbol>
99
+ <symbol id="right-align" viewBox="0 0 1138 1024">
100
+ <title>right-align</title>
101
+ <path class="path1" d="M1137.778 0v113.778h-1137.778v-113.778h1137.778z"></path>
102
+ <path class="path2" d="M1137.778 455.111v113.778h-1137.778v-113.778h1137.778z"></path>
103
+ <path class="path3" d="M1137.778 910.222v113.778h-1137.778v-113.778h1137.778z"></path>
104
+ <path class="path4" d="M1137.778 227.556v113.778h-682.667v-113.778h682.667z"></path>
105
+ <path class="path5" d="M1137.778 682.667v113.778h-682.667v-113.778h682.667z"></path>
106
+ </symbol>
107
+ <symbol id="top" viewBox="0 0 931 1024">
108
+ <title>top</title>
109
+ <path class="path1" d="M0 0v93.091h930.909v-93.091h-930.909z"></path>
110
+ <path class="path2" d="M418.909 93.091v930.909h93.091v-930.909h-93.091z"></path>
111
+ <path class="path3" d="M465.455 46.545l279.273 279.273h-558.545z"></path>
112
+ </symbol>
113
+ <symbol id="game" viewBox="0 0 1024 1024">
114
+ <title>game</title>
115
+ <path class="path1" d="M874.573 658.936c-23.164 138.599-143.668 244.232-288.845 244.232-161.744 0-292.864-131.12-292.864-292.864 0-17.466 1.529-34.575 4.46-51.2h-264.556v-241.664h317.972l42.476 42.476 42.476-42.476h170.516v0.705c124.804 8.621 228.092 95.436 261.222 211.802 13.931-11.219 31.718-17.947 51.098-17.947 44.678 0 80.896 35.76 80.896 79.872s-36.218 79.872-80.896 79.872c-16.207 0-31.3-4.705-43.955-12.808v0zM878.592 591.872c0-21.373 17.764-38.912 39.936-38.912s39.936 17.539 39.936 38.912c0 21.373-17.764 38.912-39.936 38.912s-39.936-17.539-39.936-38.912zM333.774 358.4h-260.046v159.744h277.487c-11.226 28.543-17.391 59.632-17.391 92.16 0 139.123 112.781 251.904 251.904 251.904s251.904-112.781 251.904-251.904c0-137.069-109.476-248.568-245.76-251.831v-0.073h-139.214l-59.442 59.442-59.442-59.442z"></path>
116
+ </symbol>
117
+ <symbol id="competition" viewBox="0 0 1024 1024">
118
+ <title>competition</title>
119
+ <path class="path1" d="M244.974 876.846l50.626-295.166-214.45-209.038 296.362-43.064 132.538-268.552 132.538 268.552 296.364 43.064-214.45 209.038 50.624 295.166-265.076-139.36zM169.17 401.242l170.44 166.138-40.234 234.59 210.674-110.758 210.676 110.758-40.236-234.59 170.44-166.138-235.542-34.226-105.338-213.438-105.338 213.438-21.31 3.096z"></path>
120
+ </symbol>
121
+ <symbol id="republish" viewBox="0 0 1024 1024">
122
+ <title>republish</title>
123
+ <path class="path1" d="M887.466 580.266l-273.066 273.068v-204.8h-341.334v-136.534h341.334v-204.8l204.8 204.8zM1024 580.266l-273.066 273.068h-68.268l273.068-273.068-273.068-273.066h68.268zM460.664 307.144l-0.058-51.144h-443.54v648.534h443.734v-187.166h-102.4l0.922 84.584-233.632-0.342-5.086-441.208 237.694-2.058 0.102 87.118 102.4-0.102-0.136-138.216z"></path>
124
+ </symbol>
125
+ <symbol id="uni64" viewBox="0 0 1024 1024">
126
+ <title>uni64</title>
127
+ <path class="path1" d="M2.962 203.852q6.518-11.852 18.37-11.852h981.334q11.852 0 18.37 11.852t-1.778 22.518l-490.666 597.334q-7.112 8.296-16.592 8.296-11.852 0-16.592-8.296l-490.666-597.334q-8.296-10.666-1.778-22.518z"></path>
128
+ </symbol>
129
+ <symbol id="Arrange" viewBox="0 0 1024 1024">
130
+ <title>Arrange</title>
131
+ <path class="path1" d="M0 611.226l278.802-278.836 278.802 278.836-80.35 80.35-198.452-198.52-198.452 198.52-80.35-80.35zM466.262 412.808l80.384-80.418 198.418 198.486 198.486-198.486 80.45 80.418-278.904 278.766-278.834-278.766z"></path>
132
+ </symbol>
133
+ <symbol id="tweet" viewBox="0 0 1024 1024">
134
+ <title>tweet</title>
135
+ <path class="path1" d="M224.48 827.824c37.566 7.878 77.62 11.814 119.788 11.814 148.91 0 273.288-57.622 362.258-158.594 80.488-91.346 126.020-213.046 126.020-329.684 0-1.846-0.016-3.324-0.082-5.542-0.098-3.386-0.288-7.086-0.59-11.082-0.824-10.904-2.356-22.27-4.748-33.62-6.25-29.65-17.298-54.122-33.072-69.99-28.894-29.764-67.156-46.72-107.462-46.72-80.286 0-144.902 64.616-144.902 144.902 0 13.412 1.016 24.592 3.15 33.844l12.248 53.068-54.384-2.96c-139.556-7.594-267.5-62.654-364.716-154.576-0.386 4.194-0.578 8.474-0.578 12.87 0 48.824 24.394 93.398 64.718 120.28l119.978 79.986-144.11-4.97c-9.73-0.334-19.358-1.288-28.85-2.84 18.764 42.51 56.646 74.218 103.302 83.434l173.328 34.236-170.71 45.524c-7.918 2.11-16.042 3.79-24.294 5.034 26.15 28.416 63.404 46.22 103.528 46.742l114.374 1.484-89.318 71.456c-41.676 33.34-87.272 59.252-134.876 75.904zM873.506 351.36c0 245.718-186.914 529.238-529.238 529.238-105.008 0-203.714-23.102-285.62-75.606 14.702 2.1 29.402 3.15 44.104 3.15 87.156 0 168.012-37.802 231.016-88.206-80.856-1.050-150.162-55.654-173.262-129.16 11.55 2.102 23.1 3.152 34.652 3.152 16.8 0 33.602-2.102 49.354-6.302-85.056-16.8-149.112-92.406-149.112-184.812 25.202 13.65 53.554 22.052 84.006 23.102-50.402-33.604-82.956-90.308-82.956-154.362 0-34.652 9.452-63.004 25.202-90.306 92.408 112.358 228.916 182.712 383.278 191.114-3.15-13.652-4.2-28.352-4.2-43.054 0-102.906 82.956-185.862 185.862-185.862 53.38 0 101.544 22.952 136.172 58.456 41.376-8.482 80.68-24.090 115.898-44.806-13.53 42.672-42.534 79.154-80.876 102.292 0.058 0.158 0.116 0.32 0.174 0.48 37.358-4.288 72.658-14.722 105.904-29.266-25.004 37.506-56.212 69.846-91.57 95.99 1.212 13.118 1.212 22.342 1.212 24.768z"></path>
136
+ </symbol>
137
+ <symbol id="heading" viewBox="0 0 1024 1024">
138
+ <title>heading</title>
139
+ <path class="path1" d="M407.472 185.344v-40.96h-284.422v40.96h284.422zM203.776 859.164h40.96v-696.348h-40.96v696.348zM285.696 471.882h450.56v-311.114h-40.96v270.154h-368.64v-268.4h-40.96v309.36zM326.656 551.936h368.64v311.114h40.96v-352.074h-450.56v350.072h40.96v-309.112zM777.216 852.992h40.96v-690.176h-40.96v690.176zM407.472 879.616v-40.96h-284.422v40.96h284.422zM901.040 185.344v-40.96h-284.422v40.96h284.422zM901.040 879.616v-40.96h-284.422v40.96h284.422z"></path>
140
+ </symbol>
141
+ <symbol id="binopen" viewBox="0 0 960 1024">
142
+ <title>binopen</title>
143
+ <path class="path1" d="M387.648 13.248l452.544 452.544-45.248 45.248-452.544-452.544zM546.048 81.12l226.272 226.272-45.248 45.28-226.304-226.304zM160 576h640v64h-640zM288 640h384v384h-384z"></path>
144
+ </symbol>
145
+ <symbol id="publish" viewBox="0 0 1024 1024">
146
+ <title>publish</title>
147
+ <path class="path1" d="M887.466 580.266l-273.066 273.068v-204.8h-341.334v-136.534h341.334v-204.8zM460.664 307.144l-0.058-51.144h-443.54v648.534h443.734v-187.166h-102.4l0.922 84.584-233.632-0.342-5.086-441.208 237.694-2.058 0.102 87.118 102.4-0.102-0.136-138.216z"></path>
148
+ </symbol>
149
+ <symbol id="iframe" viewBox="0 0 1024 1024">
150
+ <title>iframe</title>
151
+ <path class="path1" d="M224.256 510.976c0-45.242 36.678-81.92 81.92-81.92s81.92 36.678 81.92 81.92c0 45.242-36.678 81.92-81.92 81.92s-81.92-36.678-81.92-81.92zM347.136 510.976c0-22.622-18.338-40.96-40.96-40.96s-40.96 18.338-40.96 40.96c0 22.622 18.338 40.96 40.96 40.96s40.96-18.338 40.96-40.96zM429.056 510.976c0-45.242 36.678-81.92 81.92-81.92s81.92 36.678 81.92 81.92c0 45.242-36.678 81.92-81.92 81.92s-81.92-36.678-81.92-81.92zM551.936 510.976c0-22.622-18.338-40.96-40.96-40.96s-40.96 18.338-40.96 40.96c0 22.622 18.338 40.96 40.96 40.96s40.96-18.338 40.96-40.96zM633.856 510.976c0-45.242 36.678-81.92 81.92-81.92s81.92 36.678 81.92 81.92c0 45.242-36.678 81.92-81.92 81.92s-81.92-36.678-81.92-81.92zM756.736 510.976c0-22.622-18.338-40.96-40.96-40.96s-40.96 18.338-40.96 40.96c0 22.622 18.338 40.96 40.96 40.96s40.96-18.338 40.96-40.96zM947.252 512.684l-313.5 312.738 28.88 29.044 343.728-341.782-344.964-342.462-28.858 29.066 314.714 313.396zM32.474 498.162l-14.63 14.522 343.728 341.782 28.882-29.044-314.546-312.738 315.76-313.396-28.858-29.066-330.336 327.94z"></path>
152
+ </symbol>
153
+ <symbol id="uni75" viewBox="0 0 1024 1024">
154
+ <title>uni75</title>
155
+ <path class="path1" d="M0 938.666q0-35.556 24.888-60.444l290.37-289.186q-59.26-92.444-59.26-205.038 0-158.814 112.592-271.408t271.408-112.592 271.408 112.592 112.592 271.408-112.592 271.408-271.408 112.592q-112.592 0-205.038-59.26l-289.186 290.37q-24.888 24.888-60.444 24.888t-60.444-24.888-24.888-60.444zM384 384q0 105.482 75.26 180.74t180.74 75.26 180.74-75.26 75.26-180.74-75.26-180.74-180.74-75.26-180.74 75.26-75.26 180.74z"></path>
156
+ </symbol>
157
+ <symbol id="cross2" viewBox="0 0 1024 1024">
158
+ <title>cross2</title>
159
+ <path class="path1" d="M222.378 705.092l96.53 96.53 482.714-482.714-96.53-96.53-482.714 482.714zM318.908 222.378l-96.53 96.53 482.714 482.714 96.53-96.53-482.714-482.714z"></path>
160
+ </symbol>
161
+ <symbol id="video" viewBox="0 0 1024 1024">
162
+ <title>video</title>
163
+ <path class="path1" d="M1003.52 143.36v737.28h-983.040v-737.28zM61.44 839.68h901.12v-655.36h-901.12zM266.24 514.048c0-135.73 110.030-245.76 245.76-245.76s245.76 110.030 245.76 245.76c0 135.73-110.030 245.76-245.76 245.76s-245.76-110.030-245.76-245.76zM716.8 514.048c0-113.108-91.692-204.8-204.8-204.8s-204.8 91.692-204.8 204.8c0 113.108 91.692 204.8 204.8 204.8s204.8-91.692 204.8-204.8zM430.080 391.168l204.8 121.856-204.8 121.856zM554.776 513.024l-83.736-49.822v99.644z"></path>
164
+ </symbol>
165
+ <symbol id="image" viewBox="0 0 1024 1024">
166
+ <title>image</title>
167
+ <path class="path1" d="M1003.52 143.36v737.28h-983.040v-737.28zM61.44 839.68h901.12v-655.36h-901.12zM597.272 476.272l326.696 323.28h-819.52l1.102-343.448 120.354-103.848 246.616 243.784zM145.54 758.592h678.802l-227.504-225.124-124.736 119.754-248.086-245.238-77.568 66.93zM675.84 370.688c0-56.554 45.846-102.4 102.4-102.4s102.4 45.846 102.4 102.4c0 56.554-45.846 102.4-102.4 102.4s-102.4-45.846-102.4-102.4zM839.68 370.688c0-33.932-27.508-61.44-61.44-61.44s-61.44 27.508-61.44 61.44c0 33.932 27.508 61.44 61.44 61.44s61.44-27.508 61.44-61.44z"></path>
168
+ </symbol>
169
+ <symbol id="quote" viewBox="0 0 1024 1024">
170
+ <title>quote</title>
171
+ <path class="path1" d="M101.44 451.632l247.808-246.832 162.288 0.378-246.246 245.382h204.79v368.64h-368.64zM142.4 467.93v310.31h286.72v-286.72h-262.962l246.476-245.612-46.544-0.108zM511.040 451.632l247.808-246.832 162.288 0.378-246.246 245.382h204.79v368.64h-368.64zM552 467.93v310.31h286.72v-286.72h-262.962l246.476-245.612-46.544-0.108z"></path>
172
+ </symbol>
173
+ <symbol id="embed" viewBox="0 0 1024 1024">
174
+ <title>embed</title>
175
+ <path class="path1" d="M225.28 367.616h704.512v-122.88h-704.512v122.88zM889.406 285.882l0.84 39.638-624.88 0.484 0.044-41.094 623.996 0.972zM20.48 572.416h983.040v-122.88h-983.040v122.88zM60.548 493.172l900.67-2.996-0.092 41.79-900.152-0.062-0.426-38.732zM22.528 777.216h657.408v-122.88h-657.408v122.88zM638.944 696.614l0.062 41.158-576.422-0.146 0.78-42.186 575.58 1.174zM864.486 730.308l14.446-14.464-104.364-104.642-29.002 28.924 76.010 74.966-76.334 76.628 28.978 28.948 90.266-90.36zM36.356 293.692l-14.446 14.464 104.364 104.642 29.002-28.924-77.316-75.612 77.64-75.982-28.98-28.948-90.264 90.36z"></path>
176
+ </symbol>
177
+ <symbol id="link" viewBox="0 0 1024 1024">
178
+ <title>link</title>
179
+ <path class="path1" d="M953.396 74.642l-4.028-4.042c-94.148-94.134-248.194-94.134-342.326 0l-218.106 218.136c-94.134 94.132-94.134 248.176 0 342.31l4.026 4.026c7.832 7.848 16.146 14.924 24.736 21.458l79.848-79.85c-9.302-5.494-18.126-12.072-26.116-20.060l-4.042-4.042c-51.114-51.098-51.114-134.272 0-185.39l218.128-218.112c51.116-51.118 134.274-51.118 185.386 0l4.042 4.024c51.1 51.116 51.1 134.292 0 185.39l-98.686 98.686c17.132 42.308 25.248 87.4 24.538 132.386l152.604-152.604c94.134-94.136 94.134-248.178-0.004-342.316zM631.042 388.934c-7.832-7.832-16.146-14.922-24.736-21.44l-79.848 79.832c9.304 5.496 18.126 12.074 26.116 20.062l4.042 4.040c51.116 51.116 51.116 134.272 0 185.388l-218.13 218.134c-51.118 51.102-134.276 51.102-185.388 0l-4.042-4.042c-51.098-51.12-51.098-134.276 0-185.388l98.688-98.686c-17.134-42.306-25.246-87.402-24.538-132.386l-152.602 152.598c-94.136 94.132-94.136 248.178 0 342.324l4.026 4.032c94.152 94.128 248.192 94.128 342.328 0l218.11-218.118c94.134-94.132 94.134-248.194 0-342.326l-4.026-4.024z"></path>
180
+ </symbol>
181
+ <symbol id="view" viewBox="0 0 1024 1024">
182
+ <title>view</title>
183
+ <path class="path1" d="M512 785.066c-238.934 0-443.734-273.066-443.734-273.066s204.8-273.066 443.734-273.066c238.934 0 443.734 273.066 443.734 273.066s-204.8 273.066-443.734 273.066zM512 648.534c75.4 0 136.534-61.134 136.534-136.534s-61.134-136.534-136.534-136.534c-75.4 0-136.534 61.134-136.534 136.534s61.134 136.534 136.534 136.534z"></path>
184
+ </symbol>
185
+ <symbol id="user" viewBox="0 0 1024 1024">
186
+ <title>user</title>
187
+ <path class="path1" d="M853.334 853.334c-244.782 1.98-488.698 1.98-682.668 0 0-115.598 117.272-212.014 273.068-234.156v-57.172c-40.812-23.61-68.268-67.732-68.268-118.272 0-3.016 0.104-6.008 0.286-8.966-20.56-11.764-34.418-33.918-34.418-59.302s13.858-47.536 34.418-59.3c-0.182-2.958-0.286-5.95-0.286-8.966 0-75.4 61.134-136.534 136.534-136.534s136.534 61.134 136.534 136.534c0 3.016-0.104 6.008-0.286 8.966 20.56 11.764 34.418 33.916 34.418 59.3s-13.858 47.538-34.418 59.302c0.182 2.958 0.286 5.95 0.286 8.966 0 50.54-27.456 94.662-68.268 118.272v57.172c155.796 22.142 273.068 118.558 273.068 234.156z"></path>
188
+ </symbol>
189
+ <symbol id="edit" viewBox="0 0 1024 1024">
190
+ <title>edit</title>
191
+ <path class="path1" d="M281.11 594.91l377.334-373.452 134.064 134.154-374.864 374.306-136.534 1.104zM898.856 263.85l-70.678 71.054-139.982-140.048 70.668-71.054 32.882 0.272 106.598 104.414zM153.6 256h-68.266v682.666h682.666v-340.218l-136.534 136.762v66.924h-409.6v-409.6h68.268l136.396-136.534h-272.93z"></path>
192
+ </symbol>
193
+ <symbol id="Tick" viewBox="0 0 1024 1024">
194
+ <title>Tick</title>
195
+ <path class="path1" d="M375.204 640.694l-155.75-165.102-96.54 96.54 251.484 251.482 526.688-526.688-96.54-96.54-429.342 440.308z"></path>
196
+ </symbol>
197
+ <symbol id="poll" viewBox="0 0 1024 1024">
198
+ <title>poll</title>
199
+ <path class="path1" d="M63.488 266.24h245.76v532.48h-245.76zM104.448 757.76h163.84v-450.56h-163.84zM1004.62 880.64v-40.96h-983.116v40.96h983.116zM392.192 144.384h245.76v653.312h-245.76zM433.152 756.736h163.84v-571.392h-163.84zM718.848 389.12h245.76v409.6h-245.76zM759.808 430.080v327.68h163.84v-327.68z"></path>
200
+ </symbol>
201
+ <symbol id="bump" viewBox="0 0 1024 1024">
202
+ <title>bump</title>
203
+ <path class="path1" d="M580.266 384h208.418l-273.066-256-273.066 256h201.182v266.65h136.532v-266.65zM170.666 716.8h682.668v136.534h-682.668z"></path>
204
+ </symbol>
205
+ <symbol id="back" viewBox="0 0 682 1024">
206
+ <title>back</title>
207
+ <path class="path1" d="M512 994.702l160.882-160.882-321.764-321.82 321.764-321.82-160.882-160.882-482.702 482.702 482.702 482.702z"></path>
208
+ </symbol>
209
+ <symbol id="next" viewBox="0 0 682 1024">
210
+ <title>next</title>
211
+ <path class="path1" d="M190.18 29.298l-160.882 160.882 321.764 321.82-321.764 321.82 160.882 160.882 482.702-482.702-482.702-482.702z"></path>
212
+ </symbol>
213
+ <symbol id="list" viewBox="0 0 1024 1024">
214
+ <title>list</title>
215
+ <path class="path1" d="M143.36 245.76v122.88h-122.88v-122.88zM61.44 286.72v40.96h40.96v-40.96zM143.36 450.56v122.88h-122.88v-122.88zM61.44 491.52v40.96h40.96v-40.96zM143.36 655.36v122.88h-122.88v-122.88zM61.44 737.28h40.96v-40.96h-40.96zM839.68 245.76v122.88h-614.4v-122.88zM266.24 327.68h532.48v-40.96h-532.48zM1003.52 450.56v122.88h-778.24v-122.88zM266.24 491.52v40.96h696.32v-40.96zM716.8 655.36v122.88h-491.52v-122.88zM266.24 696.32v40.96h409.6v-40.96z"></path>
216
+ </symbol>
217
+ <symbol id="text" viewBox="0 0 1024 1024">
218
+ <title>text</title>
219
+ <path class="path1" d="M638.068 191.506l191.274 191.364-506.776 508.938-191.922-1.596 0.648-189.768zM171.744 849.592l133.946 1.114 465.794-467.782-133.362-133.424-465.928 467.916zM850.324 358.71l-190.434-190.426 96.488-96.962 44.816 0.292 145.020 141.974 0.596 48.162zM717.746 168.212l132.506 132.502 55.388-55.66-0.174-14.036-121.094-118.552-11.078-0.072z"></path>
220
+ </symbol>
221
+ <symbol id="bin" viewBox="0 0 1024 1024">
222
+ <title>bin</title>
223
+ <path class="path1" d="M170.666 375.466h682.668v68.268h-682.668zM170.666 238.934h682.668v68.266h-682.668zM341.334 170.666h341.332v68.268h-341.332zM307.2 443.734h409.6v409.6h-409.6z"></path>
224
+ </symbol>
225
+ <symbol id="instagram" viewBox="0 0 1024 1024">
226
+ <title>instagram</title>
227
+ <path class="path1" d="M673.792 354.304h126.976v-126.976h-126.976v126.976zM759.808 268.288v45.056h-45.056v-45.056h45.056z"></path>
228
+ <path class="path2" d="M184.32 491.52v-307.2h655.36v309.248h-144.498c-10.178-91.025-87.392-161.792-181.134-161.792-93.038 0-169.795 69.707-180.894 159.744h-148.834zM184.32 532.48v307.2h655.36v-305.152h-144.498c-10.178 91.025-87.392 161.792-181.134 161.792-94.444 0-172.112-71.83-181.352-163.84h-148.376zM143.36 880.64h737.28v-737.28h-737.28v737.28zM372.736 514.048c0-78.044 63.268-141.312 141.312-141.312s141.312 63.268 141.312 141.312c0 78.044-63.268 141.312-141.312 141.312s-141.312-63.268-141.312-141.312z"></path>
229
+ </symbol>
230
+ <symbol id="emphasis" viewBox="0 0 1024 1024">
231
+ <title>emphasis</title>
232
+ <path class="path1" d="M1004.621 880.64v-40.96h-983.117v40.96h983.117z"></path>
233
+ <path class="path2" d="M1005.645 186.368v-40.96h-983.117v40.96h983.117z"></path>
234
+ <path class="path3" d="M962.794 532.48v-40.96h-376.904v40.96h376.904z"></path>
235
+ <path class="path4" d="M837.118 694.272v-40.96h-251.228v40.96h251.228z"></path>
236
+ <path class="path5" d="M837.118 368.64v-40.96h-251.228v40.96h251.228z"></path>
237
+ <path class="path6" d="M485.376 314.368v-40.96h-397.312v40.96h397.312z"></path>
238
+ <path class="path7" d="M256 397.312v-40.96h-167.936v40.96h167.936z"></path>
239
+ <path class="path8" d="M227.328 753.608h40.96v-397.256h-40.96v397.256z"></path>
240
+ <path class="path9" d="M309.248 753.608h40.96v-397.256h-40.96v397.256z"></path>
241
+ <path class="path10" d="M391.339 769.024v-40.96h-204.8v40.96h204.8z"></path>
242
+ <path class="path11" d="M63.488 231.424h40.96v204.8h-40.96v-204.8z"></path>
243
+ <path class="path12" d="M473.088 231.424h40.96v204.8h-40.96v-204.8z"></path>
244
+ <path class="path13" d="M514.048 397.312v-40.96h-204.8v40.96h204.8z"></path>
245
+ </symbol>
246
+ <symbol id="cross" viewBox="0 0 1024 1024">
247
+ <title>cross</title>
248
+ <path class="path1" d="M222.378 705.092l96.53 96.53 482.714-482.714-96.53-96.53-482.714 482.714zM318.908 222.378l-96.53 96.53 482.714 482.714 96.53-96.53-482.714-482.714z"></path>
249
+ </symbol>
250
+ <symbol id="default" viewBox="0 0 1024 1024">
251
+ <title>default</title>
252
+ <path class="path1" d="M365.714 365.714h292.571v292.571h-292.571v-292.571z"></path>
253
+ <path class="path2" d="M0 365.714h292.571v292.571h-292.571v-292.571z"></path>
254
+ <path class="path3" d="M0 0h292.571v292.571h-292.571v-292.571z"></path>
255
+ <path class="path4" d="M731.429 0h292.571v292.571h-292.571v-292.571z"></path>
256
+ <path class="path5" d="M365.714 0h292.571v292.571h-292.571v-292.571z"></path>
257
+ <path class="path6" d="M0 731.429h292.571v292.571h-292.571v-292.571z"></path>
258
+ <path class="path7" d="M731.429 720.53h292.571v292.571h-292.571v-292.571z"></path>
259
+ <path class="path8" d="M365.714 720.53h292.571v292.571h-292.571v-292.571z"></path>
260
+ <path class="path9" d="M731.429 365.714h292.571v292.571h-292.571v-292.571z"></path>
261
+ </symbol>
262
+ <symbol id="rule" viewBox="0 0 400 32">
263
+ <title>rule</title>
264
+ <path class="path1" d="M0 0v32h400v-32z"></path>
265
+ </symbol>
266
+ <symbol id="browse" viewBox="0 0 114 32">
267
+ <title>browse</title>
268
+ <path class="path1" d="M3.556 26.68c0 0.961 0.801 1.764 1.767 1.764h24.91c0.974 0 1.767-0.793 1.767-1.764v-21.36c0-0.961-0.801-1.764-1.767-1.764h-24.91c-0.974 0-1.767 0.793-1.767 1.764v21.36zM5.323 0h24.91c2.94 0 5.323 2.405 5.323 5.32v21.36c0 2.938-2.388 5.32-5.323 5.32h-24.91c-2.94 0-5.323-2.405-5.323-5.32v-21.36c0-2.938 2.388-5.32 5.323-5.32z"></path>
269
+ <path class="path2" d="M14.597 14.996h3.989c0.587 0 1.076-0.166 1.467-0.499s0.587-0.812 0.587-1.437c0-0.704-0.176-1.199-0.528-1.486s-0.86-0.43-1.525-0.43h-3.989v3.852zM12.153 9.148h6.786c1.252 0 2.255 0.287 3.012 0.86s1.134 1.441 1.134 2.601c0 0.704-0.173 1.307-0.518 1.809s-0.838 0.89-1.476 1.164v0.039c0.86 0.183 1.512 0.59 1.956 1.222s0.665 1.424 0.665 2.376c0 0.548-0.098 1.059-0.293 1.535s-0.502 0.887-0.919 1.232c-0.417 0.345-0.952 0.619-1.604 0.821s-1.428 0.303-2.327 0.303h-6.414v-13.963zM14.597 21.116h4.322c0.743 0 1.32-0.192 1.731-0.577s0.616-0.929 0.616-1.633c0-0.691-0.205-1.222-0.616-1.594s-0.988-0.557-1.731-0.557h-4.322v4.361z"></path>
270
+ <path class="path3" d="M42.667 26.68c0 0.961 0.801 1.764 1.767 1.764h24.91c0.974 0 1.767-0.793 1.767-1.764v-21.36c0-0.961-0.801-1.764-1.767-1.764h-24.91c-0.974 0-1.767 0.793-1.767 1.764v21.36zM44.434 0h24.91c2.94 0 5.323 2.405 5.323 5.32v21.36c0 2.938-2.388 5.32-5.323 5.32h-24.91c-2.94 0-5.323-2.405-5.323-5.32v-21.36c0-2.938 2.388-5.32 5.323-5.32z"></path>
271
+ <path class="path4" d="M53.708 14.996h3.989c0.587 0 1.076-0.166 1.467-0.499s0.587-0.812 0.587-1.437c0-0.704-0.176-1.199-0.528-1.486s-0.86-0.43-1.525-0.43h-3.989v3.852zM51.264 9.148h6.786c1.252 0 2.255 0.287 3.012 0.86s1.134 1.441 1.134 2.601c0 0.704-0.173 1.307-0.518 1.809s-0.838 0.89-1.476 1.164v0.039c0.86 0.183 1.512 0.59 1.956 1.222s0.665 1.424 0.665 2.376c0 0.548-0.098 1.059-0.293 1.535s-0.502 0.887-0.919 1.232c-0.417 0.345-0.952 0.619-1.604 0.821s-1.428 0.303-2.327 0.303h-6.414v-13.963zM53.708 21.116h4.322c0.743 0 1.32-0.192 1.731-0.577s0.616-0.929 0.616-1.633c0-0.691-0.205-1.222-0.616-1.594s-0.988-0.557-1.731-0.557h-4.322v4.361z"></path>
272
+ <path class="path5" d="M81.778 26.68c0 0.961 0.801 1.764 1.767 1.764h24.91c0.974 0 1.767-0.793 1.767-1.764v-21.36c0-0.961-0.801-1.764-1.767-1.764h-24.91c-0.974 0-1.767 0.793-1.767 1.764v21.36zM83.545 0h24.909c2.94 0 5.323 2.405 5.323 5.32v21.36c0 2.938-2.388 5.32-5.323 5.32h-24.91c-2.94 0-5.323-2.405-5.323-5.32v-21.36c0-2.938 2.388-5.32 5.323-5.32z"></path>
273
+ <path class="path6" d="M92.82 14.996h3.989c0.587 0 1.076-0.166 1.467-0.499s0.587-0.812 0.587-1.437c0-0.704-0.176-1.199-0.528-1.486s-0.86-0.43-1.525-0.43h-3.989v3.852zM90.375 9.148h6.786c1.252 0 2.255 0.287 3.012 0.86s1.134 1.441 1.134 2.601c0 0.704-0.173 1.307-0.518 1.809s-0.838 0.89-1.476 1.164v0.039c0.86 0.183 1.512 0.59 1.956 1.222s0.665 1.424 0.665 2.376c0 0.548-0.098 1.059-0.293 1.535s-0.502 0.887-0.919 1.232c-0.417 0.345-0.952 0.619-1.604 0.821s-1.428 0.303-2.327 0.303h-6.414v-13.963zM92.82 21.116h4.322c0.743 0 1.32-0.192 1.731-0.577s0.616-0.929 0.616-1.633c0-0.691-0.205-1.222-0.616-1.594s-0.988-0.557-1.731-0.557h-4.322v4.361z"></path>
274
+ </symbol>
275
+ <symbol id="oembed" viewBox="0 0 1024 1024">
276
+ <title>embed</title>
277
+ <path class="path1" d="M225.28 367.616h704.512v-122.88h-704.512v122.88zM889.406 285.882l0.84 39.638-624.88 0.484 0.044-41.094 623.996 0.972zM20.48 572.416h983.040v-122.88h-983.040v122.88zM60.548 493.172l900.67-2.996-0.092 41.79-900.152-0.062-0.426-38.732zM22.528 777.216h657.408v-122.88h-657.408v122.88zM638.944 696.614l0.062 41.158-576.422-0.146 0.78-42.186 575.58 1.174zM864.486 730.308l14.446-14.464-104.364-104.642-29.002 28.924 76.010 74.966-76.334 76.628 28.978 28.948 90.266-90.36zM36.356 293.692l-14.446 14.464 104.364 104.642 29.002-28.924-77.316-75.612 77.64-75.982-28.98-28.948-90.264 90.36z"></path>
278
+ </symbol>
279
+ <symbol id="pages" viewBox="0 0 114 32">
280
+ <title>features</title>
281
+ <path class="path1" d="M3.556 26.68c0 0.961 0.801 1.764 1.767 1.764h24.91c0.974 0 1.767-0.793 1.767-1.764v-21.36c0-0.961-0.801-1.764-1.767-1.764h-24.91c-0.974 0-1.767 0.793-1.767 1.764v21.36zM5.323 0h24.91c2.94 0 5.323 2.405 5.323 5.32v21.36c0 2.938-2.388 5.32-5.323 5.32h-24.91c-2.94 0-5.323-2.405-5.323-5.32v-21.36c0-2.938 2.388-5.32 5.323-5.32z"></path>
282
+ <path class="path2" d="M13.931 9.148h9.641v2.112h-7.196v3.657h6.316v1.995h-6.316v6.199h-2.444z"></path>
283
+ <path class="path3" d="M42.667 26.68c0 0.961 0.801 1.764 1.767 1.764h24.91c0.974 0 1.767-0.793 1.767-1.764v-21.36c0-0.961-0.801-1.764-1.767-1.764h-24.91c-0.974 0-1.767 0.793-1.767 1.764v21.36zM44.434 0h24.91c2.94 0 5.323 2.405 5.323 5.32v21.36c0 2.938-2.388 5.32-5.323 5.32h-24.91c-2.94 0-5.323-2.405-5.323-5.32v-21.36c0-2.938 2.388-5.32 5.323-5.32z"></path>
284
+ <path class="path4" d="M53.042 9.148h9.641v2.112h-7.196v3.657h6.316v1.995h-6.316v6.199h-2.444z"></path>
285
+ <path class="path5" d="M81.778 26.68c0 0.961 0.801 1.764 1.767 1.764h24.91c0.974 0 1.767-0.793 1.767-1.764v-21.36c0-0.961-0.801-1.764-1.767-1.764h-24.91c-0.974 0-1.767 0.793-1.767 1.764v21.36zM83.545 0h24.909c2.94 0 5.323 2.405 5.323 5.32v21.36c0 2.938-2.388 5.32-5.323 5.32h-24.91c-2.94 0-5.323-2.405-5.323-5.32v-21.36c0-2.938 2.388-5.32 5.323-5.32z"></path>
286
+ <path class="path6" d="M92.153 9.148h9.641v2.112h-7.196v3.657h6.316v1.995h-6.316v6.199h-2.444z"></path>
287
+ </symbol>
288
+ <symbol id="items" viewBox="0 0 149 32">
289
+ <title>item-row</title>
290
+ <path class="path1" d="M34.103 1.28v29.439c0 0.35-0.118 0.65-0.355 0.902s-0.536 0.379-0.896 0.379h-31.602c-0.341 0-0.636-0.126-0.882-0.379s-0.369-0.552-0.369-0.902v-29.439c0-0.35 0.123-0.65 0.369-0.902s0.54-0.379 0.882-0.379h31.602c0.359 0 0.659 0.127 0.896 0.379s0.355 0.552 0.355 0.902c0 0 0-0.35 0 0v0 0zM31.262 2.909h-28.42v21.439l7.020-5.293 8.469 3.81-2.103-4.538 8.327-9.252 6.707 8.379v-14.545zM12.42 7.419c0.738 0.756 1.108 1.678 1.108 2.763s-0.37 2.008-1.108 2.763c-0.74 0.756-1.639 1.135-2.7 1.135s-1.96-0.378-2.7-1.135c-0.739-0.755-1.108-1.677-1.108-2.763s0.369-2.007 1.108-2.763c0.739-0.757 1.639-1.134 2.7-1.134s1.961 0.378 2.7 1.134v0z"></path>
291
+ <path class="path2" d="M72.503 1.28v29.439c0 0.35-0.118 0.65-0.355 0.902s-0.536 0.379-0.896 0.379h-31.602c-0.341 0-0.636-0.126-0.882-0.379s-0.369-0.552-0.369-0.902v-29.439c0-0.35 0.123-0.65 0.369-0.902s0.54-0.379 0.882-0.379h31.602c0.359 0 0.659 0.127 0.896 0.379s0.355 0.552 0.355 0.902c0 0 0-0.35 0 0v0 0zM69.662 2.909h-28.42v21.439l7.020-5.293 8.469 3.81-2.103-4.538 8.327-9.252 6.707 8.379v-14.545zM50.82 7.419c0.738 0.756 1.108 1.678 1.108 2.763s-0.37 2.008-1.108 2.763c-0.74 0.756-1.639 1.135-2.7 1.135s-1.961-0.378-2.7-1.135c-0.739-0.755-1.108-1.677-1.108-2.763s0.369-2.007 1.108-2.763c0.739-0.757 1.639-1.134 2.7-1.134s1.961 0.378 2.7 1.134v0z"></path>
292
+ <path class="path3" d="M110.903 1.28v29.439c0 0.35-0.118 0.65-0.355 0.902s-0.536 0.379-0.896 0.379h-31.602c-0.341 0-0.636-0.126-0.882-0.379s-0.369-0.552-0.369-0.902v-29.439c0-0.35 0.123-0.65 0.369-0.902s0.54-0.379 0.882-0.379h31.602c0.359 0 0.659 0.127 0.896 0.379s0.355 0.552 0.355 0.902c0 0 0-0.35 0 0v0 0zM108.062 2.909h-28.42v21.439l7.020-5.293 8.469 3.81-2.103-4.538 8.327-9.252 6.707 8.379v-14.545zM89.22 7.419c0.738 0.756 1.108 1.678 1.108 2.763s-0.37 2.008-1.108 2.763c-0.74 0.756-1.639 1.135-2.7 1.135s-1.96-0.378-2.7-1.135c-0.739-0.755-1.108-1.677-1.108-2.763s0.369-2.007 1.108-2.763c0.739-0.757 1.639-1.134 2.7-1.134s1.961 0.378 2.7 1.134v0z"></path>
293
+ <path class="path4" d="M149.303 1.28v29.439c0 0.35-0.118 0.65-0.355 0.902s-0.536 0.379-0.896 0.379h-31.602c-0.341 0-0.636-0.126-0.882-0.379s-0.369-0.552-0.369-0.902v-29.439c0-0.35 0.123-0.65 0.369-0.902s0.54-0.379 0.882-0.379h31.602c0.359 0 0.659 0.127 0.896 0.379s0.355 0.552 0.355 0.902c0 0 0-0.35 0 0v0 0zM146.462 2.909h-28.42v21.439l7.020-5.293 8.469 3.81-2.103-4.538 8.327-9.252 6.707 8.379v-14.545zM127.62 7.419c0.738 0.756 1.108 1.678 1.108 2.763s-0.37 2.008-1.108 2.763c-0.74 0.756-1.639 1.135-2.7 1.135s-1.96-0.378-2.7-1.135c-0.739-0.755-1.108-1.677-1.108-2.763s0.369-2.007 1.108-2.763c0.739-0.757 1.639-1.134 2.7-1.134s1.961 0.378 2.7 1.134v0z"></path>
294
+ </symbol>
295
+ <symbol id="item_carousel" viewBox="0 0 70 32">
296
+ <title>item-carousel</title>
297
+ <path class="path1" d="M54.971 1.268v29.151c0 0.346-0.139 0.643-0.417 0.893s-0.629 0.375-1.051 0.375h-37.081c-0.401 0-0.746-0.125-1.035-0.375s-0.433-0.547-0.433-0.893v-29.151c0-0.346 0.145-0.643 0.433-0.893s0.634-0.375 1.035-0.375h37.081c0.422 0 0.773 0.126 1.051 0.375s0.417 0.547 0.417 0.893c0 0 0-0.346 0 0v0 0zM51.637 2.881h-33.347v21.23l8.237-5.242 9.937 3.773-2.467-4.493 9.771-9.162 7.87 8.297v-14.403zM29.528 7.346c0.866 0.748 1.3 1.661 1.3 2.736s-0.434 1.988-1.3 2.736c-0.868 0.749-1.924 1.123-3.169 1.123s-2.3-0.374-3.168-1.123c-0.867-0.748-1.3-1.661-1.3-2.736s0.433-1.988 1.3-2.736c0.867-0.749 1.923-1.123 3.168-1.123s2.301 0.374 3.169 1.123v0z"></path>
298
+ <path class="path2" d="M61.63 9.481v10.667l8.296-5.217z"></path>
299
+ <path class="path3" d="M8.296 9.481v10.667l-8.296-5.217z"></path>
300
+ </symbol>
301
+ <symbol id="item_embed" viewBox="0 0 71 32">
302
+ <title>item-embed</title>
303
+ <path class="path1" d="M30.362 1.268v29.151c0 0.346 0.139 0.643 0.417 0.893s0.629 0.375 1.051 0.375h37.081c0.401 0 0.746-0.125 1.035-0.375s0.433-0.547 0.433-0.893v-29.151c0-0.346-0.144-0.643-0.433-0.893s-0.634-0.375-1.035-0.375h-37.081c-0.422 0-0.773 0.126-1.051 0.375s-0.417 0.547-0.417 0.893c0 0 0-0.346 0 0v0 0zM33.697 2.881h33.347v21.23l-8.237-5.242-9.937 3.773 2.467-4.493-9.771-9.162-7.87 8.297v-14.403zM55.805 7.346c-0.866 0.748-1.3 1.661-1.3 2.736s0.434 1.988 1.3 2.736c0.868 0.749 1.924 1.123 3.169 1.123s2.3-0.374 3.168-1.123c0.867-0.748 1.3-1.661 1.3-2.736s-0.433-1.988-1.3-2.736c-0.867-0.749-1.923-1.123-3.168-1.123s-2.301 0.374-3.169 1.123v0z"></path>
304
+ <path class="path2" d="M0 22.993v1.896h24.889v-1.896h-24.889zM0 28.919v1.896h24.889v-1.896h-24.889zM0 17.304v1.896h24.889v-1.896h-24.889zM0 11.615v1.896h24.889v-1.896h-24.889zM0 1.185v3.081h24.889v-3.081h-24.889z"></path>
305
+ </symbol>
306
+ <symbol id="item_features" viewBox="0 0 70 32">
307
+ <title>item-slideshow</title>
308
+ <path class="path1" d="M0 1.268v29.151c0 0.346 0.139 0.643 0.417 0.893s0.629 0.375 1.051 0.375h37.081c0.401 0 0.746-0.125 1.035-0.375s0.433-0.547 0.433-0.893v-29.151c0-0.346-0.145-0.643-0.433-0.893s-0.634-0.375-1.035-0.375h-37.081c-0.422 0-0.773 0.126-1.051 0.375s-0.417 0.547-0.417 0.893c0 0 0-0.346 0 0v0 0zM3.334 2.881h33.347v21.23l-8.237-5.242-9.937 3.773 2.467-4.493-9.771-9.162-7.87 8.297v-14.403zM25.443 7.346c-0.866 0.748-1.3 1.661-1.3 2.736s0.434 1.988 1.3 2.736c0.868 0.749 1.924 1.123 3.169 1.123s2.3-0.374 3.168-1.123c0.867-0.748 1.3-1.661 1.3-2.736s-0.433-1.988-1.3-2.736c-0.867-0.749-1.923-1.123-3.168-1.123s-2.301 0.374-3.169 1.123v0z"></path>
309
+ <path class="path2" d="M44.304 22.519v2.37h24.889v-2.37h-24.889zM44.304 15.407v2.37h24.889v-2.37h-24.889zM44.304 8.296v2.37h24.889v-2.37h-24.889zM44.304 1.185v2.37h24.889v-2.37h-24.889z"></path>
310
+ </symbol>
311
+ <symbol id="item_grid" viewBox="0 0 56 32">
312
+ <title>item-grid</title>
313
+ <path class="path1" d="M0 0v15.448h33.103v-15.448h-33.103zM2.207 2.207h28.69v11.034h-28.69v-11.034zM34.207 0v15.448h22.069v-15.448h-22.069zM36.414 2.207h17.655v11.034h-17.655v-11.034zM0 16.552v15.448h13.241v-15.448h-13.241zM2.207 18.759h8.828v11.034h-8.828v-11.034zM14.345 16.552v15.448h13.241v-15.448h-13.241zM16.552 18.759h8.828v11.034h-8.828v-11.034zM28.69 16.552v15.448h13.241v-15.448h-13.241zM30.897 18.759h8.828v11.034h-8.828v-11.034zM43.034 16.552v15.448h13.241v-15.448h-13.241zM45.241 18.759h8.828v11.034h-8.828v-11.034z"></path>
314
+ </symbol>
315
+ <symbol id="search_results" viewBox="0 0 43 32">
316
+ <title>results</title>
317
+ <path class="path1" d="M0 0v14.933h12.8v-14.933h-12.8zM2.133 2.133h8.533v10.667h-8.533v-10.667zM14.933 0v14.933h12.8v-14.933h-12.8zM17.067 2.133h8.533v10.667h-8.533v-10.667zM29.867 0v14.933h12.8v-14.933h-12.8zM32 2.133h8.533v10.667h-8.533v-10.667zM0 17.067v14.933h12.8v-14.933h-12.8zM2.133 19.2h8.533v10.667h-8.533v-10.667zM14.933 17.067v14.933h12.8v-14.933h-12.8zM17.067 19.2h8.533v10.667h-8.533v-10.667zM29.867 17.067v14.933h12.8v-14.933h-12.8zM32 19.2h8.533v10.667h-8.533v-10.667z"></path>
318
+ </symbol>
319
+ </defs>
320
+ </svg>
@@ -0,0 +1,22 @@
1
+ Spotlight.onLoad(function() {
2
+ $("[data-action='add-another']").on("click", function(event) {
3
+ event.preventDefault();
4
+
5
+ var templateId = $(this).data('template-id');
6
+
7
+ var template = document.querySelector('#' + templateId);
8
+ var clone = document.importNode(template.content, true);
9
+
10
+ var count = $(this).closest('.form-group').find('[name="' + $(clone).find('[name]').attr('name') + '"]').length + 1;
11
+ $(clone).find('[id]').each(function(index, el) {
12
+ $(el).attr('id', $(el).attr('id') + '_' + String(count));
13
+ });
14
+
15
+ $(clone).find('[for]').each(function(index, el) {
16
+ $(el).attr('for', $(el).attr('for') + '_' + String(count));
17
+ });
18
+
19
+
20
+ $(clone).insertBefore(this);
21
+ });
22
+ });