Current section
Files
Jump to
Current section
Files
lib/xberg/heading_context.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e21c71a5751b345136e5ca51dea30bbd3862f7fdc63aa50e6b36be84c454e0e
# 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