/home/techb158/dev.balacoffee.com/vendor/league/commonmark/src/Extension
NameSizeModeActions
Attributes/-0755rm
Autolink/-0755rm
CommonMark/-0755rm
DefaultAttributes/-0755rm
DescriptionList/-0755rm
DisallowedRawHtml/-0755rm
Embed/-0755rm
ExternalLink/-0755rm
Footnote/-0755rm
FrontMatter/-0755rm
HeadingPermalink/-0755rm
InlinesOnly/-0755rm
Mention/-0755rm
SmartPunct/-0755rm
Strikethrough/-0755rm
Table/-0755rm
TableOfContents/-0755rm
TaskList/-0755rm
ConfigurableExtensionInterface.php5170644editdlrm
ExtensionInterface.php6110644editdlrm
GithubFlavoredMarkdownExtension.php11810644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/league/commonmark/src/Extension/ExtensionInterface.php (611B)
* * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) * - (c) John MacFarlane * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Extension; use League\CommonMark\Environment\EnvironmentBuilderInterface; interface ExtensionInterface { public function register(EnvironmentBuilderInterface $environment): void; }