I\'m using jekyll and Liquid to generate a static web site on github pages.
I want to base some content decisions on whether the amount of content in a document has
{% assign val = page.content | number_of_words %} {% if val > 200 %} .... {% endif %}