Class MarkdownViewerTableOfContentsModel

Table of content model for Markdown viewer files.

Hierarchy (view full)

Constructors

Properties

parser: null | IMarkdownParser

Markdown parser

A signal emitted when any model state changes.

The widget to search in

Accessors

  • get activeHeading(): null | H
  • Current active entry.

    Returns null | H

    table of contents active entry

  • get documentType(): string
  • Type of document supported by the model.

    Notes

    A data-document-type attribute with this value will be set on the tree view .jp-TableOfContents-content[data-document-type="..."]

    Returns string

  • get headings(): H[]
  • List of headings.

    Returns H[]

    table of contents list of headings

  • get isActive(): boolean
  • Whether the model is active or not.

    Notes

    An active model means it is displayed in the table of contents. This can be used by subclass to limit updating the headings.

    Returns boolean

  • set isActive(v): void
  • Whether the model needs to be kept up to date or not.

    Notes

    This is set to true if the ToC panel is visible and to false if it is hidden. But some models may require to be always active; e.g. to add numbering in the document.

    Parameters

    • v: boolean

    Returns void

  • get isAlwaysActive(): boolean
  • Whether the model gets updated even if the table of contents panel is hidden or not.

    Returns boolean

  • get isDisposed(): boolean
  • Test whether the model is disposed.

    Returns boolean

  • get title(): undefined | string
  • Document title

    Returns undefined | string

  • set title(v): void
  • Document title

    Parameters

    • v: undefined | string

    Returns void

Methods

  • Dispose the model.

    Returns void

  • Set a new active heading.

    Parameters

    • heading: null | IMarkdownViewerHeading

      The new active heading

    • Optional emitSignal: boolean

      Whether to emit the activeHeadingChanged signal or not.

    Returns void

  • Callback on heading collapse.

    Parameters

    • options: {
          collapsed?: boolean;
          heading?: IMarkdownViewerHeading;
      }
      • Optional collapsed?: boolean

        The new collapsed status (toggle existing status if not provided)

      • Optional heading?: IMarkdownViewerHeading

        The heading to change state (all headings if not provided)

    Returns void