Member Junction
    Preparing search index...

    A {% if %}...{% elif %}...{% else %}...{% endif %} block

    interface MJConditionalBlock {
        branches: MJBranch[];
        raw: string;
        type: "mj_conditional";
    }
    Index

    Properties

    Properties

    branches: MJBranch[]

    Ordered branches: first is the if, middle are elifs, last may be else

    raw: string

    Original raw text of the entire block

    type: "mj_conditional"