Current section

Files

Jump to
xberg lib xberg heading_context.ex
Raw

lib/xberg/heading_context.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:926a121ce8858da89e1c2dae78836bd02775ed955b144da6ce043a83737b8c26
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.HeadingContext do
@moduledoc """
Heading context for a chunk within a Markdown document.
Contains the heading hierarchy from document root to this chunk's section.
"""
@typedoc "Heading context for a chunk within a Markdown document."
@type t :: %__MODULE__{
headings: [Xberg.HeadingLevel.t()]
}
defstruct headings: []
end