Current section

Files

Jump to
html_to_markdown lib html_to_markdown grid_cell.ex
Raw

lib/html_to_markdown/grid_cell.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:526c92c34b7201230da79912b4ec8eb9ecc5c6683951a43cd0234a619377accd
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule HtmlToMarkdown.GridCell do
@moduledoc "A single cell in a table grid."
@typedoc "A single cell in a table grid."
@type t :: %__MODULE__{
content: String.t() | nil,
row: non_neg_integer(),
col: non_neg_integer(),
row_span: non_neg_integer(),
col_span: non_neg_integer(),
is_header: boolean()
}
defstruct content: nil,
row: 0,
col: 0,
row_span: 0,
col_span: 0,
is_header: false
end