Completed
Push — contact-form/move-export-rebas... ( e50f9a...56461e )
by George
21:14 queued 09:14
created

_inc/lib/markdown/gfm.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * GitHub-Flavoured Markdown. Inspired by Evan's plugin, but modified.
4
 *
5
 * @author Evan Solomon
6
 * @author Matt Wiebe <[email protected]>
7
 * @link https://github.com/evansolomon/wp-github-flavored-markdown-comments
8
 *
9
 * Add a few extras from GitHub's Markdown implementation. Must be used in a WordPress environment.
10
 */
11
12
class WPCom_GHF_Markdown_Parser extends MarkdownExtra_Parser {
13
14
	/**
15
	 * Hooray somewhat arbitrary numbers that are fearful of 1.0.x.
16
	 */
17
	const WPCOM_GHF_MARDOWN_VERSION = '0.9.0';
18
19
	/**
20
	 * Use a [code] shortcode when encountering a fenced code block
21
	 * @var boolean
22
	 */
23
	public $use_code_shortcode = true;
24
25
	/**
26
	 * Preserve shortcodes, untouched by Markdown.
27
	 * This requires use within a WordPress installation.
28
	 * @var boolean
29
	 */
30
	public $preserve_shortcodes = true;
31
32
	/**
33
	 * Preserve the legacy $latex your-latex-code-here$ style
34
	 * LaTeX markup
35
	 */
36
	public $preserve_latex = true;
37
38
	/**
39
	 * Preserve single-line <code> blocks.
40
	 * @var boolean
41
	 */
42
	public $preserve_inline_code_blocks = true;
43
44
	/**
45
	 * Strip paragraphs from the output. This is the right default for WordPress,
46
	 * which generally wants to create its own paragraphs with `wpautop`
47
	 * @var boolean
48
	 */
49
	public $strip_paras = true;
50
51
	// Will run through sprintf - you can supply your own syntax if you want
52
	public $shortcode_start = '[code lang=%s]';
53
	public $shortcode_end   = '[/code]';
54
55
	// Stores shortcodes we remove and then replace
56
	protected $preserve_text_hash = array();
57
58
	/**
59
	 * Set environment defaults based on presence of key functions/classes.
60
	 */
61
	public function __construct() {
62
		$this->use_code_shortcode  = class_exists( 'SyntaxHighlighter' );
0 ignored issues
show
Equals sign not aligned correctly; expected 1 space but found 2 spaces

This check looks for improperly formatted assignments.

Every assignment must have exactly one space before and one space after the equals operator.

To illustrate:

$a = "a";
$ab = "ab";
$abc = "abc";

will have no issues, while

$a   = "a";
$ab  = "ab";
$abc = "abc";

will report issues in lines 1 and 2.

Loading history...
63
		/**
64
		 * Allow processing shortcode contents.
65
		 *
66
		 * @module markdown
67
		 *
68
		 * @since 4.4.0
69
		 *
70
		 * @param boolean $preserve_shortcodes Defaults to $this->preserve_shortcodes.
71
		 */
72
		$this->preserve_shortcodes = apply_filters( 'jetpack_markdown_preserve_shortcodes', $this->preserve_shortcodes ) && function_exists( 'get_shortcode_regex' );
73
		$this->preserve_latex      = function_exists( 'latex_markup' );
74
		$this->strip_paras         = function_exists( 'wpautop' );
75
76
		parent::__construct();
77
	}
78
79
	/**
80
	 * Overload to specify heading styles only if the hash has space(s) after it. This is actually in keeping with
81
	 * the documentation and eases the semantic overload of the hash character.
82
	 * #Will Not Produce a Heading 1
83
	 * # This Will Produce a Heading 1
84
	 *
85
	 * @param  string $text Markdown text
86
	 * @return string       HTML-transformed text
87
	 */
88
	public function transform( $text ) {
89
		// Preserve anything inside a single-line <code> element
90
		if ( $this->preserve_inline_code_blocks ) {
91
			$text = $this->single_line_code_preserve( $text );
92
		}
93
		// Remove all shortcodes so their interiors are left intact
94
		if ( $this->preserve_shortcodes ) {
95
			$text = $this->shortcode_preserve( $text );
96
		}
97
		// Remove legacy LaTeX so it's left intact
98
		if ( $this->preserve_latex ) {
99
			$text = $this->latex_preserve( $text );
100
		}
101
102
		// escape line-beginning # chars that do not have a space after them.
103
		$text = preg_replace_callback( '|^#{1,6}( )?|um', array( $this, '_doEscapeForHashWithoutSpacing' ), $text );
104
105
		/**
106
		 * Allow third-party plugins to define custom patterns that won't be processed by Markdown.
107
		 *
108
		 * @module markdown
109
		 *
110
		 * @since 3.9.2
111
		 *
112
		 * @param array $custom_patterns Array of custom patterns to be ignored by Markdown.
113
		 */
114
		$custom_patterns = apply_filters( 'jetpack_markdown_preserve_pattern', array() );
115
		if ( is_array( $custom_patterns ) && ! empty( $custom_patterns ) ) {
116
			foreach ( $custom_patterns as $pattern ) {
117
				$text = preg_replace_callback( $pattern, array( $this, '_doRemoveText'), $text );
118
			}
119
		}
120
121
		// run through core Markdown
122
		$text = parent::transform( $text );
123
124
		// Occasionally Markdown Extra chokes on a para structure, producing odd paragraphs.
125
		$text = str_replace( "<p>&lt;</p>\n\n<p>p>", '<p>', $text );
126
127
		// put start-of-line # chars back in place
128
		$text = $this->restore_leading_hash( $text );
129
130
		// Strip paras if set
131
		if ( $this->strip_paras ) {
132
			$text = $this->unp( $text );
133
		}
134
135
		// Restore preserved things like shortcodes/LaTeX
136
		$text = $this->do_restore( $text );
137
138
		return $text;
139
	}
140
141
	/**
142
	 * Prevents blocks like <code>__this__</code> from turning into <code><strong>this</strong></code>
143
	 * @param  string $text Text that may need preserving
144
	 * @return string       Text that was preserved if needed
145
	 */
146
	public function single_line_code_preserve( $text ) {
147
		return preg_replace_callback( '|<code\b[^>]*>(.*?)</code>|', array( $this, 'do_single_line_code_preserve' ), $text );
148
	}
149
150
	/**
151
	 * Regex callback for inline code presevation
152
	 * @param  array $matches Regex matches
153
	 * @return string         Hashed content for later restoration
154
	 */
155
	public function do_single_line_code_preserve( $matches ) {
156
		return '<code>' . $this->hash_block( $matches[1] ) . '</code>';
157
	}
158
159
	/**
160
	 * Preserve code block contents by HTML encoding them. Useful before getting to KSES stripping.
161
	 * @param  string $text Markdown/HTML content
162
	 * @return string       Markdown/HTML content with escaped code blocks
163
	 */
164
	public function codeblock_preserve( $text ) {
165
		return preg_replace_callback( "/^([`~]{3})([^`\n]+)?\n([^`~]+)(\\1)/m", array( $this, 'do_codeblock_preserve' ), $text );
166
	}
167
168
	/**
169
	 * Regex callback for code block preservation.
170
	 * @param  array $matches Regex matches
171
	 * @return string         Codeblock with escaped interior
172
	 */
173
	public function do_codeblock_preserve( $matches ) {
174
		$block = stripslashes( $matches[3] );
175
		$block = esc_html( $block );
176
		$block = str_replace( '\\', '\\\\', $block );
177
		$open = $matches[1] . $matches[2] . "\n";
178
		return $open . $block . $matches[4];
179
	}
180
181
	/**
182
	 * Restore previously preserved (i.e. escaped) code block contents.
183
	 * @param  string $text Markdown/HTML content with escaped code blocks
184
	 * @return string       Markdown/HTML content
185
	 */
186
	public function codeblock_restore( $text ) {
187
		return preg_replace_callback( "/^([`~]{3})([^`\n]+)?\n([^`~]+)(\\1)/m", array( $this, 'do_codeblock_restore' ), $text );
188
	}
189
190
	/**
191
	 * Regex callback for code block restoration (unescaping).
192
	 * @param  array $matches Regex matches
193
	 * @return string         Codeblock with unescaped interior
194
	 */
195
	public function do_codeblock_restore( $matches ) {
196
		$block = html_entity_decode( $matches[3], ENT_QUOTES );
197
		$open = $matches[1] . $matches[2] . "\n";
198
		return $open . $block . $matches[4];
199
	}
200
201
	/**
202
	 * Called to preserve legacy LaTeX like $latex some-latex-text $
203
	 * @param  string $text Text in which to preserve LaTeX
204
	 * @return string       Text with LaTeX replaced by a hash that will be restored later
205
	 */
206
	protected function latex_preserve( $text ) {
207
		// regex from latex_remove()
208
		$regex = '%
209
			\$latex(?:=\s*|\s+)
210
			((?:
211
				[^$]+ # Not a dollar
212
			|
213
				(?<=(?<!\\\\)\\\\)\$ # Dollar preceded by exactly one slash
214
			)+)
215
			(?<!\\\\)\$ # Dollar preceded by zero slashes
216
		%ix';
217
		$text = preg_replace_callback( $regex, array( $this, '_doRemoveText'), $text );
218
		return $text;
219
	}
220
221
	/**
222
	 * Called to preserve WP shortcodes from being formatted by Markdown in any way.
223
	 * @param  string $text Text in which to preserve shortcodes
224
	 * @return string       Text with shortcodes replaced by a hash that will be restored later
225
	 */
226
	protected function shortcode_preserve( $text ) {
227
		$text = preg_replace_callback( $this->get_shortcode_regex(), array( $this, '_doRemoveText' ), $text );
228
		return $text;
229
	}
230
231
	/**
232
	 * Restores any text preserved by $this->hash_block()
233
	 * @param  string $text Text that may have hashed preservation placeholders
234
	 * @return string       Text with hashed preseravtion placeholders replaced by original text
235
	 */
236
	protected function do_restore( $text ) {
237
		foreach( $this->preserve_text_hash as $hash => $value ) {
238
			$placeholder = $this->hash_maker( $hash );
239
			$text = str_replace( $placeholder, $value, $text );
240
		}
241
		// reset the hash
242
		$this->preserve_text_hash = array();
243
		return $text;
244
	}
245
246
	/**
247
	 * Regex callback for text preservation
248
	 * @param  array $m  Regex $matches array
249
	 * @return string    A placeholder that will later be replaced by the original text
250
	 */
251
	protected function _doRemoveText( $m ) {
252
		return $this->hash_block( $m[0] );
253
	}
254
255
	/**
256
	 * Call this to store a text block for later restoration.
257
	 * @param  string $text Text to preserve for later
258
	 * @return string       Placeholder that will be swapped out later for the original text
259
	 */
260
	protected function hash_block( $text ) {
261
		$hash = md5( $text );
262
		$this->preserve_text_hash[ $hash ] = $text;
263
		$placeholder = $this->hash_maker( $hash );
264
		return $placeholder;
265
	}
266
267
	/**
268
	 * Less glamorous than the Keymaker
269
	 * @param  string $hash An md5 hash
270
	 * @return string       A placeholder hash
271
	 */
272
	protected function hash_maker( $hash ) {
273
		return 'MARKDOWN_HASH' . $hash . 'MARKDOWN_HASH';
274
	}
275
276
	/**
277
	 * Remove bare <p> elements. <p>s with attributes will be preserved.
278
	 * @param  string $text HTML content
279
	 * @return string       <p>-less content
280
	 */
281
	public function unp( $text ) {
282
		return preg_replace( "#<p>(.*?)</p>(\n|$)#ums", '$1$2', $text );
283
	}
284
285
	/**
286
	 * A regex of all shortcodes currently registered by the current
287
	 * WordPress installation
288
	 * @uses   get_shortcode_regex()
289
	 * @return string A regex for grabbing shortcodes.
290
	 */
291
	protected function get_shortcode_regex() {
292
		$pattern = get_shortcode_regex();
293
294
		// don't match markdown link anchors that could be mistaken for shortcodes.
295
		$pattern .= '(?!\()';
296
297
		return "/$pattern/s";
298
	}
299
300
	/**
301
	 * Since we escape unspaced #Headings, put things back later.
302
	 * @param  string $text text with a leading escaped hash
303
	 * @return string       text with leading hashes unescaped
304
	 */
305
	protected function restore_leading_hash( $text ) {
306
		return preg_replace( "/^(<p>)?(&#35;|\\\\#)/um", "$1#", $text );
307
	}
308
309
	/**
310
	 * Overload to support ```-fenced code blocks for pre-Markdown Extra 1.2.8
311
	 * https://help.github.com/articles/github-flavored-markdown#fenced-code-blocks
312
	 */
313
	public function doFencedCodeBlocks( $text ) {
314
		// If we're at least at 1.2.8, native fenced code blocks are in.
315
		// Below is just copied from it in case we somehow got loaded on
316
		// top of someone else's Markdown Extra
317
		if ( version_compare( MARKDOWNEXTRA_VERSION, '1.2.8', '>=' ) )
318
			return parent::doFencedCodeBlocks( $text );
319
320
		#
321
		# Adding the fenced code block syntax to regular Markdown:
322
		#
323
		# ~~~
324
		# Code block
325
		# ~~~
326
		#
327
		$less_than_tab = $this->tab_width;
328
329
		$text = preg_replace_callback('{
330
				(?:\n|\A)
331
				# 1: Opening marker
332
				(
333
					(?:~{3,}|`{3,}) # 3 or more tildes/backticks.
334
				)
335
				[ ]*
336
				(?:
337
					\.?([-_:a-zA-Z0-9]+) # 2: standalone class name
338
				|
339
					'.$this->id_class_attr_catch_re.' # 3: Extra attributes
340
				)?
341
				[ ]* \n # Whitespace and newline following marker.
342
343
				# 4: Content
344
				(
345
					(?>
346
						(?!\1 [ ]* \n)	# Not a closing marker.
347
						.*\n+
348
					)+
349
				)
350
351
				# Closing marker.
352
				\1 [ ]* (?= \n )
353
			}xm',
354
			array($this, '_doFencedCodeBlocks_callback'), $text);
355
356
		return $text;
357
	}
358
359
	/**
360
	 * Callback for pre-processing start of line hashes to slyly escape headings that don't
361
	 * have a leading space
362
	 * @param  array $m  preg_match matches
363
	 * @return string    possibly escaped start of line hash
364
	 */
365
	public function _doEscapeForHashWithoutSpacing( $m ) {
366
		if ( ! isset( $m[1] ) )
367
			$m[0] = '\\' . $m[0];
368
		return $m[0];
369
	}
370
371
	/**
372
	 * Overload to support Viper's [code] shortcode. Because awesome.
373
	 */
374
	public function _doFencedCodeBlocks_callback( $matches ) {
375
		// in case we have some escaped leading hashes right at the start of the block
376
		$matches[4] = $this->restore_leading_hash( $matches[4] );
377
		// just MarkdownExtra_Parser if we're not going ultra-deluxe
378
		if ( ! $this->use_code_shortcode ) {
379
			return parent::_doFencedCodeBlocks_callback( $matches );
380
		}
381
382
		// default to a "text" class if one wasn't passed. Helps with encoding issues later.
383
		if ( empty( $matches[2] ) ) {
384
			$matches[2] = 'text';
385
		}
386
387
		$classname =& $matches[2];
388
		$codeblock = preg_replace_callback('/^\n+/', array( $this, '_doFencedCodeBlocks_newlines' ), $matches[4] );
389
390
		if ( $classname{0} == '.' )
391
			$classname = substr( $classname, 1 );
392
393
		$codeblock = esc_html( $codeblock );
394
		$codeblock = sprintf( $this->shortcode_start, $classname ) . "\n{$codeblock}" . $this->shortcode_end;
395
		return "\n\n" . $this->hashBlock( $codeblock ). "\n\n";
396
	}
397
398
}
399