jekyll-assetをバージョン2から3へアップレードしたところ、Liquidタグの修正が必要だったのでメモしておきます。

バージョン2では、リソースのタイプ別にLiquidタグが用意されていたのが、バージョン3では、assetに一本化されました。

asset_path

修正前

{% asset_path icon.png %}

修正後

{% asset icon.png @path %}

js

修正前

{% js main %}

修正後

{% asset main.js %}

css

修正前

{% css  main %}

修正後

 {% asset main.css %}

img

修正前

    {% img 'icon' alt:'site icon' class:'face' %}

修正後

    {% asset 'icon.png' alt='site icon' class='face' %}