Skip to content

Allow spaces around the pipe operator #46

@chocolateboy

Description

@chocolateboy

Please allow spaces to be used around the pipe operator (|). They make filters much easier to read.

Before:

div.movies@ {
    .title { $title };
    .date { $date };
    .duration { $duration|match("\\d+")|get(0)|Number };
}

After:

div.movies@ {
    .title { $title };
    .date { $date };
    .duration { $duration | match("\\d+") | get(0) | Number };
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions