解析:子/上标

时间:2018-08-20 21:51:20

标签: php commonmark parsedown

Parsedown 1.8.0-beta-5的当前版本没有用于子/上标的内置语法。尽管CommonMark未指定此类语法,但其他几种轻量标记语言(例如:Parsedown ExtremeTextile)使用的语法类似于以下内容:

in: 19^th^  
out: 19<sup>th</sup>

in: H~2~O  
out: H<sub>2</sub>O

问题
要修改Parsedown.php文件并包含此类语法应采取哪些步骤?


注意:此问题在其他时间已经出现(Parsedown, add sub/superscript)。但是,仍然没有循序渐进的指南来说明Parsedown.php文件中要进行哪些修改才能实现。

1 个答案:

答案 0 :(得分:0)

  1. Superscript中附加Tilde$InlineTypes

    protected $InlineTypes = array(
        '!' => array('Image'),
        '&' => array('SpecialCharacter'),
        '*' => array('Emphasis'),
        ':' => array('Url'),
        '<' => array('UrlTag', 'EmailTag', 'Markup'),
        '[' => array('Link'),
        '_' => array('Emphasis'),
        '`' => array('Code'),
        '~' => array('Tilde'),
        '^' => array('Superscript'),
        '\\' => array('EscapeSequence'),
    );
    
  2. 定义方法inlineSuperscript。它看起来应该很像inlineStrikethrough

    protected function inlineSuperscript($Excerpt)
    {
        if (preg_match('/^\^(.+?)\^/', $Excerpt['text'], $matches))
        {
            return array(
                'extent' => strlen($matches[0]),
                'element' => array(
                    'name' => 'sup',
                    'handler' => array(
                        'function' => 'lineElements',
                        'argument' => $matches[1],
                        'destination' => 'elements',
                    )
                ),
            );
        }
    }
    
  3. 定义方法inlineTilde和删除方法inlineStrikethrough。它看起来应该很像inlineEmphasis

    protected function inlineTilde($Excerpt)
    {
        if ( ! isset($Excerpt['text'][1]))
        {
            return;
        }
    
        $marker = $Excerpt['text'][0];
    
        if ($Excerpt['text'][1] === $marker and preg_match('/^~~(?=\S)(.+?)(?<=\S)~~/', $Excerpt['text'], $matches))
        {
            $emphasis = 'del';
        }
        elseif (preg_match('/^~(?=\S)(.+?)(?<=\S)~/', $Excerpt['text'], $matches))
        {
            $emphasis = 'sub';
        }
        else
        {
            return;
        }
    
        return array(
            'extent' => strlen($matches[0]),
            'element' => array(
                'name' => $emphasis,
                'handler' => array(
                    'function' => 'lineElements',
                    'argument' => $matches[1],
                    'destination' => 'elements',
                )
            ),
        );
    }
    
  4. 将新符号添加到$inlineMarkerList

    protected $inlineMarkerList = '!*_&[:<`~\\^';