Files

26 lines
765 B
Elixir
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
defmodule Kreuzberg.InlineElement do
@moduledoc """
Inline element within a block.
Represents text with formatting, links, images, etc.
"""
@typedoc "Inline element within a block."
@type t :: %__MODULE__{
element_type: String.t() | nil,
content: String.t() | nil,
attributes: String.t() | nil,
metadata: map() | nil
}
defstruct element_type: :text,
content: nil,
attributes: nil,
metadata: nil
end