zf

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

list_item.ex (301B)


      1 defmodule EarmarkParser.Block.ListItem do
      2   @moduledoc false
      3   defstruct attrs: nil,
      4             blocks: [],
      5             bullet: "",
      6             lnb: 0,
      7             annotation: nil,
      8             loose?: false,
      9             spaced?: true,
     10             type: :ul
     11 end
     12 #  SPDX-License-Identifier: Apache-2.0