{% if page.tweets %} {% assign tweets = page.tweets %} {% else %} {% assign tweets = site.data.tweets %} {% endif %} {% for tweet in tweets %}

{% assign words = tweet | split: " " %} {% for word in words %} {% assign first_ch = word | slice: 0 %} {% if first_ch == "#" %} {{ word }} {% elsif first_ch == "@" %} {{ word }} {% else %} {{ word }} {% endif %} {% endfor %}

{% endfor %}