1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-11-22 04:23:01 +00:00

Bugfix: parser-default: Don't convert # into header unless it's at the beginning of a line

This commit is contained in:
Starbeamrainbowlabs 2015-10-04 14:08:40 +01:00
parent f5555bad3e
commit e149c35357
3 changed files with 3 additions and 3 deletions

View file

@ -1945,7 +1945,7 @@ register_module([
class Slimdown { class Slimdown {
public static $rules = array ( public static $rules = array (
'/\r\n/' => "\n", // new line normalisation '/\r\n/' => "\n", // new line normalisation
'/(#+)(.*)/' => 'self::header', // headers '/^(#+)(.*)/' => 'self::header', // headers
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold '/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
'/(_)(.*?)\1/' => '<em>\2</em>', // emphasis '/(_)(.*?)\1/' => '<em>\2</em>', // emphasis

View file

@ -149,7 +149,7 @@
"author": "Johnny Broadway & Starbeamrainbowlabs", "author": "Johnny Broadway & Starbeamrainbowlabs",
"description": "The default parser for Pepperminty Wiki. Based on Johnny Broadway's Slimdown (with more than a few modifications). This parser's features are documented in the help page.", "description": "The default parser for Pepperminty Wiki. Based on Johnny Broadway's Slimdown (with more than a few modifications). This parser's features are documented in the help page.",
"id": "parser-default", "id": "parser-default",
"lastupdate": 1443945169, "lastupdate": 1443964067,
"optional": false "optional": false
}, },
{ {

View file

@ -50,7 +50,7 @@ register_module([
class Slimdown { class Slimdown {
public static $rules = array ( public static $rules = array (
'/\r\n/' => "\n", // new line normalisation '/\r\n/' => "\n", // new line normalisation
'/(#+)(.*)/' => 'self::header', // headers '/^(#+)(.*)/' => 'self::header', // headers
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold '/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
'/(_)(.*?)\1/' => '<em>\2</em>', // emphasis '/(_)(.*?)\1/' => '<em>\2</em>', // emphasis