mirror of
https://github.com/YGGverse/gemini-php.git
synced 2026-03-31 17:05:29 +00:00
add IPv6 links support
This commit is contained in:
parent
f3ede125f2
commit
65e722d78a
1 changed files with 7 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue