# $Id: references.py 10168 2025-06-16 09:58:04Z milde $
# Authors: David Goodger <goodger@python.org>; Dmitry Jemerov
# Copyright: This module has been placed in the public domain.

"""
Directives for references and targets.
"""

__docformat__ = 'reStructuredText'

from rich_rst._vendor.docutils import nodes
from rich_rst._vendor.docutils.transforms import references
from rich_rst._vendor.docutils.parsers.rst import Directive
from rich_rst._vendor.docutils.parsers.rst import directives


class TargetNotes(Directive):

    """Target footnote generation."""

    option_spec = {'class': directives.class_option}

    def run(self):
        pending = nodes.pending(references.TargetNotes)
        self.add_name(pending)
        pending.details.update(self.options)
        self.state_machine.document.note_pending(pending)
        return [pending]
