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:062af823ed98b7935d68fff25ccea119ed4a579bc0e6041cc4ba5bac31f7be1b
# 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: map(),
markdown: String.t() | nil
}
defstruct grid: nil,
markdown: nil
end