Parsedown::blockListContinue( $Line, $Block )
Description
Source
File: bp-help/vendors/parsedown/Parsedown.php
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 | protected function blockListContinue( $Line , array $Block ) { if (isset( $Block [ 'interrupted' ]) and empty ( $Block [ 'li' ][ 'handler' ][ 'argument' ])) { return null; } $requiredIndent = ( $Block [ 'indent' ] + strlen ( $Block [ 'data' ][ 'marker' ])); if ( $Line [ 'indent' ] < $requiredIndent and ( ( $Block [ 'data' ][ 'type' ] === 'ol' and preg_match( '/^[0-9]++' . $Block [ 'data' ][ 'markerTypeRegex' ]. '(?:[ ]++(.*)|$)/' , $Line [ 'text' ], $matches ) ) or ( $Block [ 'data' ][ 'type' ] === 'ul' and preg_match( '/^' . $Block [ 'data' ][ 'markerTypeRegex' ]. '(?:[ ]++(.*)|$)/' , $Line [ 'text' ], $matches ) ) ) ) { if (isset( $Block [ 'interrupted' ])) { $Block [ 'li' ][ 'handler' ][ 'argument' ] []= '' ; $Block [ 'loose' ] = true; unset( $Block [ 'interrupted' ]); } unset( $Block [ 'li' ]); $text = isset( $matches [1]) ? $matches [1] : '' ; $Block [ 'indent' ] = $Line [ 'indent' ]; $Block [ 'li' ] = array ( 'name' => 'li' , 'handler' => array ( 'function' => 'li' , 'argument' => array ( $text ), 'destination' => 'elements' ) ); $Block [ 'element' ][ 'elements' ] []= & $Block [ 'li' ]; return $Block ; } elseif ( $Line [ 'indent' ] < $requiredIndent and $this ->blockList( $Line )) { return null; } if ( $Line [ 'text' ][0] === '[' and $this ->blockReference( $Line )) { return $Block ; } if ( $Line [ 'indent' ] >= $requiredIndent ) { if (isset( $Block [ 'interrupted' ])) { $Block [ 'li' ][ 'handler' ][ 'argument' ] []= '' ; $Block [ 'loose' ] = true; unset( $Block [ 'interrupted' ]); } $text = substr ( $Line [ 'body' ], $requiredIndent ); $Block [ 'li' ][ 'handler' ][ 'argument' ] []= $text ; return $Block ; } if ( ! isset( $Block [ 'interrupted' ])) { $text = preg_replace( '/^[ ]{0,' . $requiredIndent . '}+/' , '' , $Line [ 'body' ]); $Block [ 'li' ][ 'handler' ][ 'argument' ] []= $text ; return $Block ; } } |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.