Typst.Format.Table.Vline (Typst v0.1.4)

View Source

Creates a typst table.vline() and implements the String.Chars protocol for easy EEx interpolation.

Examples

iex> alias Typst.Format.Table.Vline
...> %Vline{start: 2} |> to_string()
"table.vline(start: 2)"

Summary

Types

t()

@type t() :: %Typst.Format.Table.Vline{
  end: non_neg_integer(),
  position:
    :start | :end | :left | :center | :right | :top | :horizon | :bottom,
  start: non_neg_integer(),
  stroke: String.t(),
  x: non_neg_integer()
}