Remove space before comma

This commit is contained in:
Justin Ethier 2016-08-18 23:10:53 -04:00
parent 86ee18c4c3
commit 34787a6691

View file

@ -62,11 +62,11 @@
{% assign d = page.date | date: "%-d" %}
{{ page.date | date: "%B" }}
{% case d %}
{% when '1' or '21' or '31' %}{{ d }}st
{% when '2' or '22' %}{{ d }}nd
{% when '3' or '23' %}{{ d }}rd
{% else %}{{ d }}th
{% endcase %},
{% when '1' or '21' or '31' %}{{ d }}st,
{% when '2' or '22' %}{{ d }}nd,
{% when '3' or '23' %}{{ d }}rd,
{% else %}{{ d }}th,
{% endcase %}
{{ page.date | date: "%Y" }}
</h2>
{{ content }}