Download the PHP package andchir/markdown-bundle without Composer
On this page you can find all versions of the php package andchir/markdown-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download andchir/markdown-bundle
More information about andchir/markdown-bundle
Files in andchir/markdown-bundle
Download andchir/markdown-bundle
More information about andchir/markdown-bundle
Files in andchir/markdown-bundle
Vendor andchir
Package markdown-bundle
Short Description Markdown bundle for Symfony 3.x
License MIT
Homepage http://modx-shopkeeper.ru/
Package markdown-bundle
Short Description Markdown bundle for Symfony 3.x
License MIT
Homepage http://modx-shopkeeper.ru/
Please rate this library. Is it a good library?
Informations about the package markdown-bundle
MarkdownBundle
composer require andchir/markdown-bundle
Usage example:
{{ currentPage.description | markdown }}
{{ currentPage.description | markdown({urlsLinked: false, safeMode: true, breaksEnabled: true, markupEscaped: true}) }}
{{ includeFileContent(currentPage.file_content_path) | markdown }}
Save content from file to the document field:
{% if currentPage.description is defined and currentPage.description is not empty %}
{{ currentPage.description | markdown }}
{% else %}
{{ includeFileContent(currentPage.file_content_path, 'documentation', currentPage.id, 'description') | markdown }}
{% endif %}
bundles.php:
return [
...,
Andchir\MarkdownBundle\MarkdownBundle\MarkdownBundle::class => ['all' => true]
];
Command to update content from file:
php bin/console markdown:action update_content documentation file_content_path description
composer require erusev/parsedown
All versions of markdown-bundle with dependencies
PHP Build Version
Package Version
Requires
erusev/parsedown Version
^1.7
The package andchir/markdown-bundle contains the following files
Loading the files please wait ....