You are here

public function AtAutolinker::getCharacters in Markdown 3.0.x

File

src/Plugin/Markdown/Extension/AtAutolinker.php, line 76

Class

AtAutolinker
Plugin annotation @MarkdownExtension( id = "at_autolinker", label = @Translation("@ Autolinker"), installed = TRUE, description = @Translation("Automatically link commonly used references that come after an at character (@) without having to…

Namespace

Drupal\markdown\Plugin\Markdown\Extension

Code

public function getCharacters() : array {
  return [
    '@',
  ];
}