我正在编辑包含/跨度,下面的代码假装是“带有来自 Front Mater 区域的元的 Jekyll 页面评级计算器”,但似乎某些语法缺少额外的标题/行,以使计算显示在左下圆引号中。现在已经没有价值了
<span class="indexmod">
{% assign number_of_words = content | strip_html | number_of_words %}
{% assign social = page.facebook | plus: page.instagram %}
{% comment %}Two lines for readability, but can be chained on one line{%
endcomment %}
{% assign Indexmod = social | times: page.age | divided_by: 1000000.0 %}
{% assign Indexmod = Indexmod | times: number_of_words | divided_by: 100
%}
{% endunless %}
</span>
这不起作用的原因有两个:
{% endunless %}
缺少匹配的 unless
子句。 添加一个或删除 endunless
行。Indexmod
的值。 您可以在计算完成后添加 {{ Indexmod }}
来完成此操作。