Jekyll 页面评级计算器,带有来自 Front Mater 区域的元数据

问题描述 投票:0回答:1

我正在编辑包含/跨度,下面的代码假装是“带有来自 Front Mater 区域的元的 Jekyll 页面评级计算器”,但似乎某些语法缺少额外的标题/行,以使计算显示在左下圆引号中。现在已经没有价值了

Fragment

查看示例页面

<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>
ruby math syntax jekyll
1个回答
4
投票

这不起作用的原因有两个:

  • 此包含中的
    {% endunless %}
    缺少匹配的
    unless
    子句。 添加一个或删除
    endunless
    行。
  • 不打印
    Indexmod
    的值。 您可以在计算完成后添加
    {{ Indexmod }}
    来完成此操作。
© www.soinside.com 2019 - 2024. All rights reserved.