You are here

public function MissingParser::getAllowedHtml in Markdown 8.2

Overrides RenderStrategyInterface::getAllowedHtml

Deprecated

in markdown:8.x-2.0 and is removed from markdown:3.0.0. Use RenderStrategyInterface::getCustomAllowedHtml instead.

See also

https://www.drupal.org/project/markdown/issues/3142418

File

src/Plugin/Markdown/MissingParser.php, line 52

Class

MissingParser
The parser used as a fallback when the requested one doesn't exist.

Namespace

Drupal\markdown\Plugin\Markdown

Code

public function getAllowedHtml() {
  return $this
    ->getCustomAllowedHtml();
}