Current section

Files

Jump to
xberg lib xberg inline_element.ex
Raw

lib/xberg/inline_element.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:b2c29ab80fb9cdb8c5190a7808ad862ad890f416ad887092447b282a5b1b69e0
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.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,
metadata: map() | nil
}
defstruct element_type: :text,
content: nil,
metadata: nil
end