join功能說明 將陣列中的元素合併成字串,可指定連接符號(預設為空字串)。 語法 Liquid{{ 陣列 | join: "連接符號" }} 範例 LiquidOutput{{ ["a", "b", "c"] | join: ", " }}a, b, cCopy Page