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-chirpy-7.1.1 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-7.1.0 _includes/jsdelivr-combine.html
Han-theme-1.0.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.5.5 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-4.0.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-4.0.0.pre.beta2 _includes/jsdelivr-combine.html
doc-theme-0.1.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.5.3 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-6.5.2 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.2.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.2.0.pre.beta3 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.2.0.pre.beta2 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.2.0.pre.beta1 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.1.4 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.1.2 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.1.1 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.1.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.0.1 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-3.0.0 _includes/jsdelivr-combine.html
jekyll-theme-chirpy-customized-upe-1.0.2 _includes/jsdelivr-combine.html