diff --git a/README.markdown b/README.markdown index 085d89c..b6184e0 100644 --- a/README.markdown +++ b/README.markdown @@ -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