-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTML-To-Markdown.php
591 lines (492 loc) · 15.4 KB
/
HTML-To-Markdown.php
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
<?php
/**
* Class HTML_To_Markdown
*
* A helper class to convert HTML to Markdown.
*
* @version 2.1.1
* @author Nick Cernis <nick@cern.is>
* @link https://github.com/nickcernis/html2markdown/ Latest version on GitHub.
* @link http://twitter.com/nickcernis Nick on twitter.
* @license http://www.opensource.org/licenses/mit-license.php MIT
*/
class HTML_To_Markdown {
/**
* @var DOMDocument The root of the document tree that holds our HTML.
*/
private $document;
/**
* @var string|boolean The Markdown version of the original HTML, or false if conversion failed
*/
private $output;
/**
* @var array Class-wide options users can override.
*/
private $options = array(
'header_style' => 'atx', // Set to "atx" to output H1 and H2 headers as # Header1 and ## Header2
'suppress_errors' => true, // Set to false to show warnings when loading malformed HTML
'strip_tags' => false, // Set to true to strip tags that don't have markdown equivalents. N.B. Strips tags, not their content. Useful to clean MS Word HTML output.
'bold_style' => '**', // Set to '__' if you prefer the underlined style
'italic_style' => '*', // Set to '_' if you prefer the underlined style
);
/**
* Constructor
*
* Set up a new DOMDocument from the supplied HTML, convert it to Markdown, and store it in $this->$output.
*
* @param string $html The HTML to convert to Markdown.
* @param array $overrides [optional] List of style and error display overrides.
*/
public function __construct( $html = null, $overrides = null ) {
if ( $overrides ) {
$this->options = array_merge( $this->options, $overrides );
}
if ( $html ) {
$this->convert( $html );
}
}
/**
* Setter for conversion options
*
* @param $name
* @param $value
*/
public function set_option( $name, $value ) {
$this->options[$name] = $value;
}
/**
* Convert
*
* Loads HTML and passes to get_markdown()
*
* @param $html
* @return string The Markdown version of the html
*/
public function convert( $html )
{
$html = preg_replace( '~>\s+<~', '><', $html ); // Strip white space between tags to prevent creation of empty #text nodes
$this->document = new DOMDocument();
if ( $this->options['suppress_errors'] ) {
libxml_use_internal_errors( true ); // Suppress conversion errors (from http://bit.ly/pCCRSX )
}
$this->document->loadHTML( '<?xml encoding="UTF-8">' . $html ); // Hack to load utf-8 HTML (from http://bit.ly/pVDyCt )
$this->document->encoding = 'UTF-8';
if ( $this->options['suppress_errors'] ) {
libxml_clear_errors();
}
return $this->get_markdown( $html );
}
/**
* Is Child Of?
*
* Is the node a child of the given parent tag?
*
* @param $parent_name string The name of the parent node to search for (e.g. 'code')
* @param $node
* @return bool
*/
private static function is_child_of( $parent_name, $node ) {
for ( $p = $node->parentNode; $p != false; $p = $p->parentNode ) {
if ( is_null( $p ) ) {
return false;
}
if ( $p->nodeName == $parent_name ) {
return true;
}
}
return false;
}
/**
* Convert Children
*
* Recursive function to drill into the DOM and convert each node into Markdown from the inside out.
*
* Finds children of each node and convert those to #text nodes containing their Markdown equivalent,
* starting with the innermost element and working up to the outermost element.
*
* @param $node
*/
private function convert_children( $node ) {
// Don't convert HTML code inside <code> blocks to Markdown - that should stay as HTML
if ( self::is_child_of( 'code', $node ) ) {
return;
}
// If the node has children, convert those to Markdown first
if ( $node->hasChildNodes() ) {
$length = $node->childNodes->length;
for ( $i = 0; $i < $length; $i++ ) {
$child = $node->childNodes->item( $i );
$this->convert_children( $child );
}
}
// Now that child nodes have been converted, convert the original node
$this->convert_to_markdown( $node );
}
/**
* Get Markdown
*
* Sends the body node to convert_children() to change inner nodes to Markdown #text nodes, then saves and
* returns the resulting converted document as a string in Markdown format.
*
* @return string|boolean The converted HTML as Markdown, or false if conversion failed
*/
private function get_markdown()
{
// Use the body tag as our root element
$body = $this->document->getElementsByTagName( 'body' )->item( 0 );
// Try the head tag if there's no body tag (e.g. the user's passed a single <script> tag for conversion)
if ( ! $body ) {
$body = $this->document->getElementsByTagName( 'head' )->item( 0 );
}
if ( ! $body ) {
return false;
}
// Convert all children of the body element. The DOMDocument stored in $this->doc will
// then consist of #text nodes, each containing a Markdown version of the original node
// that it replaced.
$this->convert_children( $body );
// Sanitize and return the body contents as a string.
$markdown = $this->document->saveHTML(); // stores the DOMDocument as a string
$markdown = html_entity_decode( $markdown, ENT_QUOTES, 'UTF-8' );
$markdown = html_entity_decode( $markdown, ENT_QUOTES, 'UTF-8' ); // Double decode to cover cases like &nbsp; http://www.php.net/manual/en/function.htmlentities.php#99984
$markdown = preg_replace( '/<!DOCTYPE [^>]+>/', '', $markdown ); // Strip doctype declaration
$unwanted = array( '<html>', '</html>', '<body>', '</body>', '<head>', '</head>', '<?xml encoding="UTF-8">', '
' );
$markdown = str_replace( $unwanted, '', $markdown ); // Strip unwanted tags
$markdown = trim( $markdown, '\n\r\0\x0B' );
$this->output = $markdown;
return $markdown;
}
/**
* Convert to Markdown
*
* Converts an individual node into a #text node containing a string of its Markdown equivalent.
*
* Example: An <h3> node with text content of "Title" becomes a text node with content of "### Title"
*
* @param $node
*/
private function convert_to_markdown( $node ) {
$tag = $node->nodeName; // the type of element, e.g. h1
$value = $node->nodeValue; // the value of that element, e.g. The Title
switch ( $tag ) {
case 'p':
case 'pre':
$markdown = ( trim( $value ) ) ? rtrim( $value ) . PHP_EOL . PHP_EOL : '';
break;
case 'h1':
case 'h2':
$markdown = $this->convert_header( $tag, $node );
break;
case 'h3':
$markdown = '### ' . $value . PHP_EOL . PHP_EOL;
break;
case 'h4':
$markdown = '#### ' . $value . PHP_EOL . PHP_EOL;
break;
case 'h5':
$markdown = '##### ' . $value . PHP_EOL . PHP_EOL;
break;
case 'h6':
$markdown = '###### ' . $value . PHP_EOL . PHP_EOL;
break;
case 'em':
case 'i':
case 'strong':
case 'b':
$markdown = $this->convert_emphasis( $tag, $value );
break;
case 'hr':
$markdown = '- - - - - -' . PHP_EOL . PHP_EOL;
break;
case 'br':
$markdown = ' ' . PHP_EOL;
break;
case 'blockquote':
$markdown = $this->convert_blockquote( $node );
break;
case 'code':
$markdown = $this->convert_code( $node );
break;
case 'ol':
case 'ul':
$markdown = $value . PHP_EOL;
break;
case 'li':
$markdown = $this->convert_list( $node );
break;
case 'img':
$markdown = $this->convert_image( $node );
break;
case 'a':
$markdown = $this->convert_anchor( $node );
break;
case '#text':
$markdown = preg_replace( '~\s+~', ' ', $value );
break;
case '#comment':
$markdown = '';
break;
default:
// If strip_tags is false (the default), preserve tags that don't have Markdown equivalents,
// such as <span> and #text nodes on their own. C14N() canonicalizes the node to a string.
// See: http://www.php.net/manual/en/domnode.c14n.php
$markdown = ($this->options['strip_tags']) ? $value : html_entity_decode( $node->C14N() );
}
// Create a DOM text node containing the Markdown equivalent of the original node
$markdown_node = $this->document->createTextNode( $markdown );
// Replace the old $node e.g. "<h3>Title</h3>" with the new $markdown_node e.g. "### Title"
$node->parentNode->replaceChild( $markdown_node, $node );
}
/**
* Convert Header
*
* Converts h1 and h2 headers to Markdown-style headers in setext style,
* matching the number of underscores with the length of the title.
*
* e.g. Header 1 Header Two
* ======== ----------
*
* Returns atx headers instead if $this->options['header_style'] is "atx"
*
* e.g. # Header 1 ## Header Two
*
* @param string $level The header level, including the "h". e.g. h1
* @param string $node The node to convert.
* @return string The Markdown version of the header.
*/
private function convert_header( $level, $node ) {
$content = $node->nodeValue;
if ( ! $this->is_child_of( 'blockquote', $node ) && $this->options['header_style'] == 'setext' ) {
$length = ( function_exists( 'mb_strlen' ) ) ? mb_strlen( $content, 'utf-8' ) : strlen( $content );
$underline = ($level == 'h1' ) ? '=' : '-';
$markdown = PHP_EOL . $content . PHP_EOL . str_repeat( $underline, $length ) . PHP_EOL . PHP_EOL; // setext style
} else {
$prefix = ( $level == 'h1' ) ? '# ' : '## ';
$markdown = PHP_EOL . $prefix . $content . PHP_EOL . PHP_EOL; // atx style
}
return $markdown;
}
/**
* Converts inline styles
* This function is used to render strong and em tags
*
* eg <strong>bold text</strong> becomes **bold text** or __bold text__
*
* @param string $tag
* @param string $value
* @return string
*/
private function convert_emphasis( $tag, $value ) {
if ( $tag == 'i' || $tag == 'em' ) {
$markdown = $this->options['italic_style'] . $value . $this->options['italic_style'];
} else {
$markdown = $this->options['bold_style'] . $value . $this->options['bold_style'];
}
return $markdown;
}
/**
* Convert Image
*
* Converts <img /> tags to Markdown.
*
* e.g. <img src="/path/img.jpg" alt="alt text" title="Title" />
* becomes ![alt text](/path/img.jpg "Title")
*
* @param $node
* @return string
*/
private function convert_image( $node ) {
$src = $node->getAttribute( 'src' );
$alt = $node->getAttribute( 'alt' );
$title = $node->getAttribute( 'title' );
if ( $title != '' ) {
$markdown = '![' . $alt . '](' . $src . ' "' . $title . '")'; // No newlines added. <img> should be in a block-level element.
} else {
$markdown = '![' . $alt . '](' . $src . ')';
}
return $markdown;
}
/**
* Convert Anchor
*
* Converts <a> tags to Markdown.
*
* e.g. <a href="http://modernnerd.net" title="Title">Modern Nerd</a>
* becomes [Modern Nerd](http://modernnerd.net "Title")
*
* @param $node
* @return string
*/
private function convert_anchor( $node ) {
$href = $node->getAttribute( 'href' );
$title = $node->getAttribute( 'title' );
$text = $node->nodeValue;
if ( $title != '' ) {
$markdown = '[' . $text . '](' . $href . ' "' . $title . '")';
} else {
$markdown = '[' . $text . '](' . $href . ')';
}
// Append a space if the node after this one is also an anchor
$next_node_name = $this->get_next_node_name( $node );
if ( $next_node_name == 'a' ) {
$markdown = $markdown . ' ';
}
return $markdown;
}
/**
* Convert List
*
* Converts <ul> and <ol> lists to Markdown.
*
* @param $node
* @return string
*/
private function convert_list( $node ) {
// If parent is an ol, use numbers, otherwise, use dashes
$list_type = $node->parentNode->nodeName;
$value = $node->nodeValue;
if ( $list_type == 'ul' ) {
$markdown = '- ' . trim( $value ) . PHP_EOL;
} else {
$number = $this->get_position( $node );
$markdown = $number . '. ' . trim( $value ) . PHP_EOL;
}
return $markdown;
}
/**
* Convert Code
*
* Convert code tags by indenting blocks of code and wrapping single lines in backticks.
*
* @param $node
* @return string
*/
private function convert_code( $node ) {
// Store the content of the code block in an array, one entry for each line
$markdown = '';
$code_content = html_entity_decode( $node->C14N() );
$code_content = str_replace( array( '<code>', '</code>'), '', $code_content );
$lines = preg_split( '/\r\n|\r|\n/', $code_content );
$total = count( $lines );
// If there's more than one line of code, prepend each line with four spaces and no backticks.
if ( $total > 1 ) {
// Remove the first and last line if they're empty
$first_line = trim( $lines[0] );
$last_line = trim( $lines[$total - 1] );
$first_line = trim( $first_line, '
' ); //trim XML style carriage returns too
$last_line = trim( $last_line, '
' );
if ( empty( $first_line ) ) {
array_shift( $lines );
}
if ( empty( $last_line ) ) {
array_pop( $lines );
}
$count = 1;
// Add this with the backticks
$markdown .= '```' . PHP_EOL;
foreach ( $lines as $line ) {
$line = str_replace( '
', '', $line );
// Remove the leading tab from the lines (we're using backticks)
// $markdown .= ' ' . $line;
$markdown .= $line;
// Add newlines, except final line of the code
if ( $count != $total ) {
$markdown .= PHP_EOL;
}
$count++;
}
$markdown .= '```' . PHP_EOL;
} else { // There's only one line of code. It's a code span, not a block. Just wrap it with backticks.
$markdown .= '`' . $lines[0] . '`';
}
return $markdown;
}
/**
* Convert blockquote
*
* Prepend blockquotes with > chars.
*
* @param $node
* @return string
*/
private function convert_blockquote( $node ) {
// Contents should have already been converted to Markdown by this point,
// so we just need to add ">" symbols to each line.
$markdown = '';
$quote_content = trim( $node->nodeValue );
$lines = preg_split( '/\r\n|\r|\n/', $quote_content );
$total_lines = count( $lines );
foreach ( $lines as $i => $line ) {
$markdown .= '> ' . $line . PHP_EOL;
if ( $i + 1 == $total_lines ) {
$markdown .= PHP_EOL;
}
}
return $markdown;
}
/**
* Get Position
*
* Returns the numbered position of a node inside its parent
*
* @param $node
* @return int The numbered position of the node, starting at 1.
*/
private function get_position( $node ) {
// Get all of the nodes inside the parent
$list_nodes = $node->parentNode->childNodes;
$total_nodes = $list_nodes->length;
$position = 1;
// Loop through all nodes and find the given $node
for ( $a = 0; $a < $total_nodes; $a++ ) {
$current_node = $list_nodes->item( $a );
if ( $current_node->isSameNode( $node ) ) {
$position = $a + 1;
}
}
return $position;
}
/**
* Get Next Node Name
*
* Return the name of the node immediately after the passed one.
*
* @param $node
* @return string|null The node name (e.g. 'h1') or null.
*/
private function get_next_node_name( $node ) {
$next_node_name = null;
$current_position = $this->get_position( $node );
$next_node = $node->parentNode->childNodes->item( $current_position );
if ( $next_node ) {
$next_node_name = $next_node->nodeName;
}
return $next_node_name;
}
/**
* To String
*
* Magic method to return Markdown output when HTML_To_Markdown instance is treated as a string.
*
* @return string
*/
public function __toString()
{
return $this->output();
}
/**
* Output
*
* Getter for the converted Markdown contents stored in $this->output
*
* @return string
*/
public function output()
{
if ( ! $this->output ) {
return '';
} else {
return $this->output;
}
}
}