mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
Updated README.md and made bulleted lists more flexible
This commit is contained in:
parent
fc2791d738
commit
a4d85b3ef9
3 changed files with 8 additions and 8 deletions
|
@ -39,7 +39,7 @@ Wanted: Themes! If you have a cool theme, simply open an issue on the bug tracke
|
||||||
* Add page history somehow
|
* Add page history somehow
|
||||||
* Allow users to change their passwords
|
* Allow users to change their passwords
|
||||||
* Add auto updating system that doesn't wipe your settings
|
* Add auto updating system that doesn't wipe your settings
|
||||||
* Add page deletion mechanism
|
* Make links to non existant pages red
|
||||||
* .... (open an issue if you have any suggestions)
|
* .... (open an issue if you have any suggestions!)
|
||||||
|
|
||||||
--Starbeamrainbowlabs
|
--Starbeamrainbowlabs
|
||||||
|
|
6
core.php
6
core.php
|
@ -232,7 +232,7 @@ function renderpage($title, $content, $minimal = false)
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
///////////////////////////////////////// Slimdown /////////////////////////////////////////
|
///////////////////////////////////////// Slimdown /////////////////////////////////////////
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////// %slimdown% //
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
/**
|
/**
|
||||||
* Slimdown - A very basic regex-based Markdown parser. Supports the
|
* Slimdown - A very basic regex-based Markdown parser. Supports the
|
||||||
|
@ -275,7 +275,7 @@ class Slimdown {
|
||||||
'/\~\~(.*?)\~\~/' => '<del>\1</del>', // del
|
'/\~\~(.*?)\~\~/' => '<del>\1</del>', // del
|
||||||
'/\:\"(.*?)\"\:/' => '<q>\1</q>', // quote
|
'/\:\"(.*?)\"\:/' => '<q>\1</q>', // quote
|
||||||
'/`(.*?)`/' => '<code>\1</code>', // inline code
|
'/`(.*?)`/' => '<code>\1</code>', // inline code
|
||||||
'/\n\*(.*)/' => 'self::ul_list', // ul lists
|
'/\n\s*(\*|-)(.*)/' => 'self::ul_list', // ul lists
|
||||||
'/\n[0-9]+\.(.*)/' => 'self::ol_list', // ol lists
|
'/\n[0-9]+\.(.*)/' => 'self::ol_list', // ol lists
|
||||||
'/\n(>|\>)(.*)/' => 'self::blockquote', // blockquotes
|
'/\n(>|\>)(.*)/' => 'self::blockquote', // blockquotes
|
||||||
'/\n-{3,}/' => "\n<hr />", // horizontal rule
|
'/\n-{3,}/' => "\n<hr />", // horizontal rule
|
||||||
|
@ -293,7 +293,7 @@ class Slimdown {
|
||||||
return sprintf ("\n<p>%s</p>\n", $trimmed);
|
return sprintf ("\n<p>%s</p>\n", $trimmed);
|
||||||
}
|
}
|
||||||
private static function ul_list ($regs) {
|
private static function ul_list ($regs) {
|
||||||
$item = $regs[1];
|
$item = $regs[2];
|
||||||
return sprintf ("\n<ul>\n\t<li>%s</li>\n</ul>", trim($item));
|
return sprintf ("\n<ul>\n\t<li>%s</li>\n</ul>", trim($item));
|
||||||
}
|
}
|
||||||
private static function ol_list ($regs) {
|
private static function ol_list ($regs) {
|
||||||
|
|
|
@ -347,7 +347,7 @@ function renderpage($title, $content, $minimal = false)
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
///////////////////////////////////////// Slimdown /////////////////////////////////////////
|
///////////////////////////////////////// Slimdown /////////////////////////////////////////
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////// %slimdown% //
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
/**
|
/**
|
||||||
* Slimdown - A very basic regex-based Markdown parser. Supports the
|
* Slimdown - A very basic regex-based Markdown parser. Supports the
|
||||||
|
@ -390,7 +390,7 @@ class Slimdown {
|
||||||
'/\~\~(.*?)\~\~/' => '<del>\1</del>', // del
|
'/\~\~(.*?)\~\~/' => '<del>\1</del>', // del
|
||||||
'/\:\"(.*?)\"\:/' => '<q>\1</q>', // quote
|
'/\:\"(.*?)\"\:/' => '<q>\1</q>', // quote
|
||||||
'/`(.*?)`/' => '<code>\1</code>', // inline code
|
'/`(.*?)`/' => '<code>\1</code>', // inline code
|
||||||
'/\n\*(.*)/' => 'self::ul_list', // ul lists
|
'/\n\s*(\*|-)(.*)/' => 'self::ul_list', // ul lists
|
||||||
'/\n[0-9]+\.(.*)/' => 'self::ol_list', // ol lists
|
'/\n[0-9]+\.(.*)/' => 'self::ol_list', // ol lists
|
||||||
'/\n(>|\>)(.*)/' => 'self::blockquote', // blockquotes
|
'/\n(>|\>)(.*)/' => 'self::blockquote', // blockquotes
|
||||||
'/\n-{3,}/' => "\n<hr />", // horizontal rule
|
'/\n-{3,}/' => "\n<hr />", // horizontal rule
|
||||||
|
@ -408,7 +408,7 @@ class Slimdown {
|
||||||
return sprintf ("\n<p>%s</p>\n", $trimmed);
|
return sprintf ("\n<p>%s</p>\n", $trimmed);
|
||||||
}
|
}
|
||||||
private static function ul_list ($regs) {
|
private static function ul_list ($regs) {
|
||||||
$item = $regs[1];
|
$item = $regs[2];
|
||||||
return sprintf ("\n<ul>\n\t<li>%s</li>\n</ul>", trim($item));
|
return sprintf ("\n<ul>\n\t<li>%s</li>\n</ul>", trim($item));
|
||||||
}
|
}
|
||||||
private static function ol_list ($regs) {
|
private static function ol_list ($regs) {
|
||||||
|
|
Loading…
Reference in a new issue