Exemplo n.º 1
0
 /**
  * @param ElementInterface $element
  *
  * @return string
  */
 public function convert(ElementInterface $element)
 {
     $src = $element->getAttribute('src');
     $alt = $element->getAttribute('alt');
     $title = $element->getAttribute('title');
     if ($title !== '') {
         // No newlines added. <img> should be in a block-level element.
         $markdown = '![' . $alt . '](' . $src . ' "' . $title . '")';
     } else {
         $markdown = '![' . $alt . '](' . $src . ')';
     }
     return $markdown;
 }
Exemplo n.º 2
0
 /**
  * @param ElementInterface $element
  *
  * @return string
  */
 public function convert(ElementInterface $element)
 {
     $language = null;
     // Checking for language class on the code block
     $classes = $element->getAttribute('class');
     if ($classes) {
         // Since tags can have more than one class, we need to find the one that starts with 'language-'
         $classes = explode(' ', $classes);
         foreach ($classes as $class) {
             if (strpos($class, 'language-') !== false) {
                 // Found one, save it as the selected language and stop looping over the classes.
                 // The space after the language avoids gluing the actual code with the language tag
                 $language = str_replace('language-', '', $class) . ' ';
                 break;
             }
         }
     }
     $markdown = '';
     $code = html_entity_decode($element->getChildrenAsString());
     // In order to remove the code tags we need to search for them and, in the case of the opening tag
     // use a regular expression to find the tag and the other attributes it might have
     $code = preg_replace('/<code\\b[^>]*>/', '', $code);
     $code = str_replace('</code>', '', $code);
     // Checking if the code has multiple lines
     $lines = preg_split('/\\r\\n|\\r|\\n/', $code);
     if (count($lines) > 1) {
         // Multiple lines detected, adding three backticks and newlines
         $markdown .= '```' . $language . "\n" . $code . "\n" . '```';
     } else {
         // One line of code, wrapping it on one backtick.
         $markdown .= '`' . $language . $code . '`';
     }
     return $markdown;
 }
Exemplo n.º 3
0
 /**
  * @param ElementInterface $element
  *
  * @return string
  */
 public function convert(ElementInterface $element)
 {
     $href = $element->getAttribute('href');
     $title = $element->getAttribute('title');
     $text = $element->getValue();
     if ($title != '') {
         $markdown = '[' . $text . '](' . $href . ' "' . $title . '")';
     } elseif ($href === $text) {
         $markdown = '<' . $href . '>';
     } else {
         $markdown = '[' . $text . '](' . $href . ')';
     }
     if (!$href) {
         $markdown = html_entity_decode($element->getChildrenAsString());
     }
     return $markdown;
 }