zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

list.ex (400B)


      1 defmodule EarmarkParser.Block.List do
      2   @moduledoc false
      3 
      4   defstruct annotation: nil,
      5             attrs: nil,
      6             blocks: [],
      7             lines: [],
      8             bullet: "-",
      9             indent: 0,
     10             lnb: 0,
     11             loose?: false,
     12             pending: {nil, 0},
     13             spaced?: false,
     14             start: "",
     15             type: :ul
     16 end
     17 #  SPDX-License-Identifier: Apache-2.0