From: Tobias Diekershoff Date: Wed, 9 Aug 2017 14:10:09 +0000 (+0200) Subject: it is hardwrap for consistency X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=29a66c8336cb127f9a927e1c5cd317f3b9fde9f2;hp=6504156508615a855ef3f582191b4b82147a7231;p=friendica.git it is hardwrap for consistency --- diff --git a/library/markdown.php b/library/markdown.php index 61eb5951cf..00696d2fe0 100644 --- a/library/markdown.php +++ b/library/markdown.php @@ -14,22 +14,22 @@ use \Michelf\MarkdownExtra; * * This function is using the php-markdown library by Michel Fortin to parse a * string ($text).It returns the rendered HTML code from that text. The optional - * $hardbreak parameter is used to switch between inserting hard breaks after + * $hardwrap parameter is used to switch between inserting hard breaks after * every linefeed, which is required for Diaspora compatibility, or not. The * later is used for parsing documentation and README.md files. * * @param string $text - * @param boolean $hardbreak - * @returns string + * @param boolean $hardwrap + * @return string */ -function Markdown($text, $hardbreak=true) { +function Markdown($text, $hardwrap=true) { $a = get_app(); $stamp1 = microtime(true); $MarkdownParser = new MarkdownExtra(); - if ($hardbreak) { + if ($hardwrap) { $MarkdownParser->hard_wrap = true; } else { $MarkdownParser->hard_wrap = false;