Browse Source

variable name fix in docs of Markdown helper

f2258e760f (commitcomment-3165819)
tags/2.0.0-alpha
Carsten Brandt 12 years ago
parent
commit
88c74e99c3
  1. 4
      framework/helpers/base/Markdown.php

4
framework/helpers/base/Markdown.php

@ -16,13 +16,13 @@ use Michelf\MarkdownExtra;
* Basic usage is the following:
*
* ```php
* $my_html = Markdown::process($my_text);
* $myHtml = Markdown::process($myText);
* ```
*
* If you want to configure the parser:
*
* ```php
* $my_html = Markdown::process($my_text, array(
* $myHtml = Markdown::process($myText, array(
* 'fn_id_prefix' => 'footnote_',
* ));
* ```

Loading…
Cancel
Save