mirror of
https://github.com/YGGverse/gemini-php.git
synced 2025-01-27 23:34:15 +00:00
add IPv6 links support
This commit is contained in:
parent
f3ede125f2
commit
65e722d78a
@ -32,6 +32,9 @@ class Reader
|
||||
|
||||
// Links
|
||||
|
||||
/// Detect IPv6 (used as no idea how to resolve square quotes in rules below)
|
||||
'/\[\[([^\[]+)\[([A-f:0-9]*)\]([^\]]+)\]\]/' => '$1~IPv6:open~$2~IPv6:close~$3',
|
||||
|
||||
/// Remove extra spaces
|
||||
'/\[\[\s?([^\|]+)\s?\|\s?([^\]]+)\s?\]\]/' => '[[$1|$2]]',
|
||||
'/\[\[\s?([^\]]+)\s?\]\]/' => '[[$1]]',
|
||||
@ -64,6 +67,10 @@ class Reader
|
||||
'/\[\[(https?:)([^\|]+)\|([^\]]+)\]\]/i' => '$3 ( $1$2 )',
|
||||
'/\[\[(https?:)([^\]]+)\]\]/i' => '$1$2', // @TODO
|
||||
|
||||
/// Apply macros
|
||||
'/~IPv6:open~/' => '[',
|
||||
'/~IPv6:close~/' => ']',
|
||||
|
||||
// List
|
||||
'/^[\s]?-/' => '* ',
|
||||
'/^[\s]+\*/' => '*',
|
||||
|
Loading…
x
Reference in New Issue
Block a user