25 lines
808 B
Elixir
25 lines
808 B
Elixir
|
|
# 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.TextAnnotation do
|
||
|
|
@moduledoc """
|
||
|
|
Inline text annotation — byte-range based formatting and links.
|
||
|
|
|
||
|
|
Annotations reference byte offsets into the node's text content,
|
||
|
|
enabling precise identification of formatted regions.
|
||
|
|
"""
|
||
|
|
|
||
|
|
@typedoc "Inline text annotation — byte-range based formatting and links."
|
||
|
|
@type t :: %__MODULE__{
|
||
|
|
start: non_neg_integer(),
|
||
|
|
end: non_neg_integer(),
|
||
|
|
kind: String.t() | nil
|
||
|
|
}
|
||
|
|
|
||
|
|
defstruct start: 0,
|
||
|
|
end: 0,
|
||
|
|
kind: :bold
|
||
|
|
end
|