Sha256: c736b89c8c327d9c2dec4128bda6df05d2d66d8eb212c4c1195c4a39e62d4fd2

Contents?: true

Size: 841 Bytes

Versions: 3

Compression:

Stored size: 841 Bytes

Contents

{% comment %}
    Unfortunately indenting the liquid here affects the code captured, so
    everything has to be left-aligned.
{% endcomment %}

{% unless __example_count %}
    {% assign __example_count = 0 %}
{% endunless %}

{% assign __example_lang = include.language | default: 'c++' %}

{% if include.name %}
    {% for e in include.name %}
        {% assign __example_count = __example_count | plus: 1 %}

{% capture __example_mdown %}
~~~ {{__example_lang}}
{% include_relative {{e}} %}
~~~
{% endcapture %}

        {% if __example_mdown %}
            {% if include.header %}
                <h3>{{include.header}} {{__example_count}}</h3>
            {% endif %}
            {{ __example_mdown | markdownify }}
        {% endif %}
    {% endfor %}
{% endif %}

{% assign __example_mdown = nil %}
{% assign __example_lang = nil %}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jekyll-theme-adobe-hyde-1.0.0 _includes/external_examples.html
jekyll-theme-adobe-hyde-0.2.2 _includes/external_examples.html
jekyll-theme-adobe-hyde-0.2.1 _includes/external_examples.html