You are here

public function TableOfContentsExtension::settingsKey in Markdown 8.2

The array key name to use when the settings are nested in another array.

Return value

mixed The settings key.

Overrides SettingsTrait::settingsKey

See also

\Drupal\markdown\Plugin\Markdown\CommonMark\CommonMark::getEnvironment()

File

src/Plugin/Markdown/CommonMark/Extension/TableOfContentsExtension.php, line 83

Class

TableOfContentsExtension
Plugin annotation @MarkdownExtension( id = "commonmark-table-of-contents", label = @Translation("Table Of Contents"), description = @Translation("Automatically inserts a table of contents into your document with links to the various…

Namespace

Drupal\markdown\Plugin\Markdown\CommonMark\Extension

Code

public function settingsKey() {
  return 'table_of_contents';
}