summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/markdowku/syntax/references.php
blob: fe50a09a26eed270f5ce0fda4f915d891c528a02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/*
 * References for links or images, i.e.
 *  [id]: http://example.com
 */

if(!defined('DOKU_INC')) die();
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'syntax.php');

class syntax_plugin_markdowku_references extends DokuWiki_Syntax_Plugin {

    function getType()  { return 'substition'; }
    function getPType() { return 'normal'; }
    function getSort()  { return 100; }

    function connectTo($mode) {
        $this->Lexer->addSpecialPattern(
            '\n[ ]{0,3}\[[^\n]+?\]:[ \t]*\n?[ \t]*<?\S+?>?[ \t]*\n?[ \t]*(?:(?<=\s)["(].+?[")][\t]*)?(?=\n)',
            $mode,
            'plugin_markdowku_references');
    }

    function handle($match, $state, $pos, Doku_Handler $handler) {
        return array($state, $match);
    }

    function render($mode, Doku_Renderer $renderer, $data) {
        if ($mode != 'metadata')
            return false;

        preg_match(
                '/\[(.+)\]:[ \t]*\n?[ \t]*<?(\S+)>?[ \t]*\n?[ \t]*(?:(?<=\s)["(](.+?)[")][\t]*)?/',
                $data[1],
                $matches);
        $key = 'markdowku_references_'.preg_replace("/ /", ".", $matches[1]);
        $renderer->meta[$key] = $matches[2];
        return true;
    }
}
//Setup VIM: ex: et ts=4 enc=utf-8 :