Home
last modified time | relevance | path

Searched refs:CONTENT_UNTIL_PARA (Results 1 – 13 of 13) sorted by relevance

/dokuwiki/inc/Parsing/ParserMode/
H A DSuperscript.php22 return '<sup>(?=[^\s])(?=' . self::CONTENT_UNTIL_PARA . '[^\s]</sup>)';
H A DDeleted.php22 return '<del>(?=[^\s])(?=' . self::CONTENT_UNTIL_PARA . '[^\s]</del>)';
H A DStrong.php25 return '\*\*(?=[^\s*])(?=' . self::CONTENT_UNTIL_PARA . '[^\s]\*\*)';
H A DMonospace.php22 return '\x27\x27(?=[^\s\x27])(?=' . self::CONTENT_UNTIL_PARA . '[^\s]\x27\x27)';
H A DSubscript.php22 return '<sub>(?=[^\s])(?=' . self::CONTENT_UNTIL_PARA . '[^\s]</sub>)';
H A DUnderline.php22 return '__(?=[^\s_])(?=' . self::CONTENT_UNTIL_PARA . '[^\s]__)';
H A DGfmDeleted.php45 . '(?=' . self::CONTENT_UNTIL_PARA . '[^\s]~~(?!~))';
H A DEmphasis.php31 return '//(?=[^\s/])(?=' . self::CONTENT_UNTIL_PARA . '[^\s:]//)';
H A DGfmEmphasisStrongUnderscore.php34 . '(?=' . self::CONTENT_UNTIL_PARA . '[^\s]___(?!_)' . self::NO_WORD_AFTER . ')';
H A DGfmStrongUnderscore.php38 . '(?=' . self::CONTENT_UNTIL_PARA . '[^\s]__' . self::NO_WORD_AFTER . ')';
H A DGfmEmphasisUnderscore.php41 . '(?=' . self::CONTENT_UNTIL_PARA . '[^\s]_' . self::NO_WORD_AFTER . ')';
H A DGfmEmphasisStrong.php50 . '(?=' . self::CONTENT_UNTIL_PARA . '[^\s]\*\*\*(?!\*))';
H A DAbstractMode.php70 protected const CONTENT_UNTIL_PARA = '(?:' . self::NOT_AT_PARA_BREAK . '.)*'; define in dokuwiki\\Parsing\\ParserMode\\AbstractMode