Lines Matching full:close
25 * Column-0 fences only (no indent tolerance, no body dedent). The close
35 * best we could do is "close at EOF" — a partial implementation that
37 * because we can't close at the blockquote boundary). Doing a degraded
88 // (?:(?!CLOSE).)*+ — body: any char (DOTALL) that isn't
89 // the start of a close-fence line. The
91 // CLOSE (the lookahead fails there), so
96 // consumes to EOF, CLOSE fails, and the
102 // CLOSE = \nF{3,}[ \t]*(?=\n) — close fence, required.
105 $close = '\n' . $this->fenceChar . '{3,}[ \t]*(?=\n)';
108 . '(?:(?!' . $close . ').)*+' . $close,
120 // close-fence run with its trailing whitespace.