You are here

MarkdownParser.php in Markdown 8.2

Same filename and directory in other branches
  1. 3.0.x src/Annotation/MarkdownParser.php

File

src/Annotation/MarkdownParser.php
View source
<?php

namespace Drupal\markdown\Annotation;


/**
 * Markdown Parser Annotation.
 *
 * @Annotation
 */
class MarkdownParser extends InstallablePlugin {

  /**
   * List of markdown extension plugin identifiers, bundled with the parser.
   *
   * @var string[]
   */
  public $bundledExtensions = [];

  /**
   * A list of extension interface class names.
   *
   * This allows a parser to indicate which extensions belong to it by
   * requiring the extension to implement at least one of these interfaces.
   *
   * @var string[]
   */
  public $extensionInterfaces = [];

}

Classes

Namesort descending Description
MarkdownParser Markdown Parser Annotation.