Current section

Files

Jump to
html_to_markdown lib html_to_markdown table_data.ex
Raw

lib/html_to_markdown/table_data.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:ae27fb2270a21feb95d12e56306ee8cb658cb16e6b0de1fb02eef725f0889bb7
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule HtmlToMarkdown.TableData do
@moduledoc "A top-level extracted table with both structured data and markdown representation."
@typedoc "A top-level extracted table with both structured data and markdown representation."
@type t :: %__MODULE__{
grid: HtmlToMarkdown.TableGrid.t(),
markdown: String.t() | nil
}
defstruct grid: nil,
markdown: nil
end