Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.

Latest commit

 

History

History
14 lines (9 loc) · 996 Bytes

File metadata and controls

14 lines (9 loc) · 996 Bytes

Structure

Syntax

Formatting syntax consists of two parts: ${path:func1()|func2()|...|funcN()}

  • the path is the descriptor of the target property. When the path is empty, the target is the whole source object.
  • the func1() , func2(), and the funcN() are pipe functions.
ExpressionTarget PropertyPipe Functions
${}obj
${key}obj.key
${key:trim()|padLeft(5)}obj.keytrim() , padLeft(5)
${:trim()|split(",")}objtrim() , split(",")

{% hint style="info" %} The more information about pipes can be found on pipe-functions {% endhint %}