jxxcarlson / elm-l0-parser / Parser.Block

Types of blocks.


type BlockType
    = Paragraph
    | OrdinaryBlock (List String)
    | VerbatimBlock (List String)


type L0BlockE
    = L0BlockE ({ name : Maybe String, args : List String, indent : Basics.Int, blockType : BlockType, content : Either String (List Parser.Expr.Expr), children : List L0BlockE })