Sha256: 58afc2ab2beb27586a1a94f0628437368231e39af751cbab05534e33c998e16c

Contents?: true

Size: 327 Bytes

Versions: 12

Compression:

Stored size: 327 Bytes

Contents

{% comment %}
  Remove the zero padding from a month/day string
{% endcomment %}

{% assign ret = include.date_str %}
{% assign _first_chat = ret | slice: 0 %}

{% if _first_chat == '0' %}
  {% assign _last_idx = ret.size | minus: 1 %}
  {% assign ret = ret | slice: 1, _last_idx %}
{% endif %}

{{ ret | replace: ' 0', ' ' }}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
jekyll-theme-chirpy-5.0.2 _includes/no-zero-date.html
jekyll-theme-chirpy-5.0.1 _includes/no-zero-date.html
jekyll-theme-chirpy-5.0.0 _includes/no-zero-date.html
jekyll-theme-chirpy-4.3.4 _includes/no-zero-date.html
jekyll-theme-chirpy-4.3.3 _includes/no-zero-date.html
jekyll-theme-chirpy-4.3.2 _includes/no-zero-date.html
jekyll-theme-chirpy-4.3.1 _includes/no-zero-date.html
jekyll-theme-chirpy-4.3.0 _includes/no-zero-date.html
jekyll-theme-chirpy-4.2.1 _includes/no-zero-date.html
jekyll-theme-chirpy-4.2.0 _includes/no-zero-date.html
jekyll-theme-chirpy-4.1.1 _includes/no-zero-date.html
jekyll-theme-chirpy-4.1.0 _includes/no-zero-date.html