Merge branch 'master' of github.com:knplabs/MarkdownBundle

This commit is contained in:
Antoine Hérault 2010-09-19 09:06:58 +02:00
commit 4cdc6af042

View file

@ -1,21 +1,21 @@
Provide markdown to Symfony 2 projects.
Provide markdown conversion to your Symfony2 projects.
## INSTALLATION
Put MarkdownBundle to your src/Bundle dir.
Put MarkdownBundle in your `src/Bundle` dir.
Then, enable it in your config.yml:
Then enable it in your `config.yml`:
markdown.parser: ~ # Enable the parser service
markdown.helper: ~ # Enable the helper for use in templates
markdown.helper: ~ # Enable the helper in the templates
## USAGE
// Use the service
$html = $this->container->markdownParser->transform($text);
$html = $this->container['markdownParser']->transform($text);
// Use the helper
echo $view->markdown->transform($text);
echo $view['markdown']->transform($text);
## TEST