Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Prepends object to the front of an array, moving other elements upwards.

Input:

{{ "Paul, George, Ringo" | split: ", " | unshift: "John" | join: ", " }}

Output:

"John, Paul, George, Ringo"

This filter also works on arrays with objects, generated by Plate:

{{ site.pages | unshift: page }}

  • No labels