Current section
Files
Jump to
Current section
Files
lib/xberg/footnote_definition.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.FootnoteDefinition do
@moduledoc """
A footnote definition from markdown text.
Represents `[^label]: content` declarations (including multi-line continuations).
"""
@typedoc "A footnote definition from markdown text."
@type t :: %__MODULE__{
label: String.t() | nil,
content: String.t() | nil,
offset: non_neg_integer()
}
defstruct label: nil,
content: nil,
offset: 0
end