mirror of
https://github.com/friendica/friendica
synced 2024-11-20 10:23:41 +00:00
it is hardwrap for consistency
This commit is contained in:
parent
6504156508
commit
29a66c8336
1 changed files with 5 additions and 5 deletions
|
@ -14,22 +14,22 @@ use \Michelf\MarkdownExtra;
|
||||||
*
|
*
|
||||||
* This function is using the php-markdown library by Michel Fortin to parse a
|
* 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
|
* 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
|
* every linefeed, which is required for Diaspora compatibility, or not. The
|
||||||
* later is used for parsing documentation and README.md files.
|
* later is used for parsing documentation and README.md files.
|
||||||
*
|
*
|
||||||
* @param string $text
|
* @param string $text
|
||||||
* @param boolean $hardbreak
|
* @param boolean $hardwrap
|
||||||
* @returns string
|
* @return string
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function Markdown($text, $hardbreak=true) {
|
function Markdown($text, $hardwrap=true) {
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
$stamp1 = microtime(true);
|
||||||
|
|
||||||
$MarkdownParser = new MarkdownExtra();
|
$MarkdownParser = new MarkdownExtra();
|
||||||
if ($hardbreak) {
|
if ($hardwrap) {
|
||||||
$MarkdownParser->hard_wrap = true;
|
$MarkdownParser->hard_wrap = true;
|
||||||
} else {
|
} else {
|
||||||
$MarkdownParser->hard_wrap = false;
|
$MarkdownParser->hard_wrap = false;
|
||||||
|
|
Loading…
Reference in a new issue