Sha256: d96e377bdcfe3e6b82b70f41f079432c743be7bc24335cfaafddef1aab8115f9

Contents?: true

Size: 726 Bytes

Versions: 57

Compression:

Stored size: 726 Bytes

Contents

{% assign urls = include.urls | split: ',' %}

{% assign combined_urls = nil %}

{% assign domain = 'https://cdn.jsdelivr.net/' %}

{% for url in urls %}
  {% if url contains domain %}
    {% assign url_snippet = url | slice: domain.size, url.size %}

    {% if combined_urls %}
      {% assign combined_urls = combined_urls | append: ',' | append: url_snippet %}
    {% else %}
      {% assign combined_urls = domain | append: 'combine/' | append: url_snippet %}
    {% endif %}

  {% elsif url contains '//' %}
    <script src="{{ url }}"></script>
  {% else %}
    <script src="{{ url | relative_url }}"></script>
  {% endif %}
{% endfor %}

{% if combined_urls %}
  <script src="{{ combined_urls }}"></script>
{% endif %}

Version data entries

57 entries across 57 versions & 6 rubygems

Version Path
jekyll-theme-coo-6.3.12 _includes/jsdelivr-combine.html
jekyll-theme-coo-6.3.11 _includes/jsdelivr-combine.html
jekyll-theme-coo-6.3.10 _includes/jsdelivr-combine.html
jekyll-theme-coo-6.3.9 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.3.1 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.3.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.2.3 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.2.2 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.2.1 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.2.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-birdly-6.1.2 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-birdly-6.1.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-birdly-6.1.1 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.1.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-birdly-6.0.2 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.0.1 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.0.0 _includes/jsdelivr-combine.html