zf

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

table.ex (284B)


      1 defmodule EarmarkParser.Block.Table do
      2   @moduledoc false
      3   defstruct lnb: 0, annotation: nil, attrs: nil, rows: [], header: nil, alignments: []
      4 
      5   def new_for_columns(n) do
      6     %__MODULE__{alignments: Elixir.List.duplicate(:left, n)}
      7   end
      8 end
      9 #  SPDX-License-Identifier: Apache-2.0