X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/52aab71e2268171618efe0f8f8e683b9bc5406f6..5aa7946eabd147041a42f3347f447eb53ee0cc47:/upload.inc.php diff --git a/upload.inc.php b/upload.inc.php index 4f5c5fe..b4a056d 100644 --- a/upload.inc.php +++ b/upload.inc.php @@ -57,12 +57,13 @@ function messagehtml($input) '{<([^>\s|]+)[\s|]([^>]+)>}' => '$2', # hyperlink "/\r\n?/" => "\n", # unix newlines "/ +\n/" => "
", # trailing spaces for hard line break - "/\n/" => "

\n

", # newlines start paragraphs + "/^[-*] (.*)$\n?/m" => '

  • $1
  • ', # list item + "/^(.+)$\n?/m" => "

    $1

    \n", # paragraph + "{^

    (

  • .*
  • )(?:

    \n)?}m" => "\n", # list container '/_(? '$1', # italic '/\*(? '$1', # bold '/~(? '$1', # stricken '/`(? '$1', # monospace ]; - $html = preg_replace(array_keys($markup), array_values($markup), htmlspecialchars($input)); - return "

    $html

    "; + return preg_replace(array_keys($markup), array_values($markup), htmlspecialchars($input)); }