nachonerd / silex-markdown-provider
Silex Service Provider using cebe/markdown
1.0.4
2015-09-12 00:52 UTC
Requires
- php: >=5.4.0
- cebe/markdown: ^1.1
- nachonerd/silex-finder-provider: ^1.0
- silex/silex: ^1.3
- twig/twig: ^1.21
Requires (Dev)
- phpunit/phpunit: 4.7.*
- squizlabs/php_codesniffer: 2.*
- symfony/browser-kit: ^2.7
- symfony/css-selector: ^2.7
This package is not auto-updated.
Last update: 2025-03-29 19:57:54 UTC
README
Description
Silex Service Provider using cebe/markdown. cebe/markdown was created by Carsten Brandt.
License
GPL-3.0
Requirements
- PHP version 5.4
- Composer
- SILEX
- Synfony Finder
- cebe/markdown
- PHP Unit 4.7.x (optional)
- PHP_CodeSniffer 2.x (optional)
Install
composer require nachonerd/silex-markdown-provider
Usage
Include following line of code somewhere in your initial Silex file (index.php or whatever):
... $app->register( new \NachoNerd\Silex\Markdown\Provider(), array( "nn.markdown.path" => __DIR__, "nn.markdown.flavor" => 'extra', "nn.markdown.filter" => '/\.md/' ) ); ...
Now you have access to instance of cebe/markdown throw $app['nn.markdown'].
Twig Extension
Filters
- markdown_parse Parse specified text to html
{{ "## Some text"|markdown_parse }} ..... {{ texttoparse|markdown_parse }}
- markdown_parse_file Parse specified file to html
{{ "some/file.md"|markdown_parse_file }} ..... {{ filename|markdown_parse_file }}
Functions
- markdown_parse_last_file Parse last file in markdown,path directory to html
{{ markdown_parse_last_file() }}
Example
<?php require_once __DIR__.'/../vendor/autoload.php'; $app = new Silex\Application(); // Considering the config.yml files is in the same directory as index.php $app->register( new \NachoNerd\Silex\Finder\Provider(), array( "nn.markdown.path" => __DIR__, "nn.markdown.flavor" => original, "nn.markdown.filter" => '/\.md/' ) ); $app->boot(); ... // traditional markdown and parse full text $parser = $app[nn.markdown]; $hmtl = $parser->parse($markdown); $hmtl = $parser->parseFile($filename); $finder = $parser->getAllFiles($filename); $finder = $parser->getNLastFiles(10); ...