mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
added syntax for images!
This commit is contained in:
parent
173987512e
commit
613a7f9ecd
2 changed files with 4 additions and 0 deletions
2
core.php
2
core.php
|
@ -357,6 +357,8 @@ class Slimdown {
|
||||||
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
|
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
|
||||||
|
|
||||||
// todo test these
|
// todo test these
|
||||||
|
'/!\[(.*)\]\(([^\s]+)\s(\d+.+)\s(left|right)\)/' => '<img src="\2" alt="\1" style="max-width: \3; float: \4;" />', // images with size
|
||||||
|
'/!\[(.*)\]\(([^\s]+)\s(\d+.+)\)/' => '<img src="\2" alt="\1" style="max-width: \3;" />', // images with size
|
||||||
'/!\[(.*)\]\((.*)\)/' => '<img src="\2" alt="\1" />', // basic images
|
'/!\[(.*)\]\((.*)\)/' => '<img src="\2" alt="\1" />', // basic images
|
||||||
// todo end
|
// todo end
|
||||||
|
|
||||||
|
|
|
@ -511,6 +511,8 @@ class Slimdown {
|
||||||
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
|
'/(\*)(.*?)\1/' => '<strong>\2</strong>', // bold
|
||||||
|
|
||||||
// todo test these
|
// todo test these
|
||||||
|
'/!\[(.*)\]\(([^\s]+)\s(\d+.+)\s(left|right)\)/' => '<img src="\2" alt="\1" style="max-width: \3; float: \4;" />', // images with size
|
||||||
|
'/!\[(.*)\]\(([^\s]+)\s(\d+.+)\)/' => '<img src="\2" alt="\1" style="max-width: \3;" />', // images with size
|
||||||
'/!\[(.*)\]\((.*)\)/' => '<img src="\2" alt="\1" />', // basic images
|
'/!\[(.*)\]\((.*)\)/' => '<img src="\2" alt="\1" />', // basic images
|
||||||
// todo end
|
// todo end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue