You are here

public function MissingExtension::isBundled in Markdown 8.2

Indicates whether the extension is automatically installed with the parser.

Note: this does not indicate whether the extension is actually being used, just that it is available because it came with the parser.

Return value

bool TRUE or FALSE

Overrides ExtensionInterface::isBundled

File

src/Plugin/Markdown/MissingExtension.php, line 36

Class

MissingExtension
The extension used as a fallback when the requested one doesn't exist.

Namespace

Drupal\markdown\Plugin\Markdown

Code

public function isBundled(InstallableLibrary $library) {
  return FALSE;
}