summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/markdowku/syntax/headeratx.php
blob: b55c38c984e57fc62cca88adab6cc0a4eefdccf8 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/*
 * Header in ATX style, i.e. '# Header1', '## Header2', ...
 */

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_headeratx extends DokuWiki_Syntax_Plugin {

    function getType()  { return 'baseonly'; }
    function getPType() { return 'block'; }
    function getSort()  { return 49; }
    function getAllowedTypes() {
        return array('formatting', 'substition', 'disabled', 'protected');
    }
  
    function connectTo($mode) {
        $this->Lexer->addSpecialPattern(
            '\n\#{1,6}[ \t]*.+?[ \t]*\#*(?=\n+)',
            'base',
            'plugin_markdowku_headeratx');
    }
  
    function handle($match, $state, $pos, Doku_Handler $handler) {
        global $conf;

        $title = trim($match);
        $level = strspn($title, '#');
        $title = trim($title, '#');
        $title = trim($title);

        if ($level < 1)
            $level = 1;
        elseif ($level > 6)
            $level = 6;

        if ($handler->getStatus('section'))
            $handler->_addCall('section_close', array(), $pos);
        if ($level <= $conf['maxseclevel']) {
            $handler->setStatus('section_edit_start', $pos);
            $handler->setStatus('section_edit_level', $level);
            $handler->setStatus('section_edit_title', $title);
        }
        $handler->_addCall('header', array($title, $level, $pos), $pos);
        $handler->_addCall('section_open', array($level), $pos);
        $handler->setStatus('section', true);

        return true;
    }
  
    function render($mode, Doku_Renderer $renderer, $data) {
        return true;
    }
}
//Setup VIM: ex: et ts=4 enc=utf-8 :