Code Duplication    Length = 9-9 lines in 2 locations

framework/3rdParty/Parsedown/Parsedown.php 2 locations

@@ 114-122 (lines=9) @@
111
                        {
112
                            $block['closed'] = true;
113
                        }
114
                        else
115
                        {
116
                            if ($block['text'] !== '')
117
                            {
118
                                $block['text'] .= "\n";
119
                            }
120
121
                            $block['text'] .= $line;
122
                        }
123
124
                        continue 2;
125
                    }
@@ 604-612 (lines=9) @@
601
602
                    unset($block['interrupted']);
603
                }
604
                else
605
                {
606
                    if ($this->breaks_enabled)
607
                    {
608
                        $block['text'] .= '  ';
609
                    }
610
611
                    $block['text'] .= "\n".$line;
612
                }
613
            }
614
            else
615
            {