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:916d4bc28e07ef28a825e0f6996d70e0391fb2f85136a4473449809107d57a63
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
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