目前我使用 CodeIgniter 3.1.3 和 Parsedown/Markdown Guide
通过解析,我希望能够设置图像的宽度和高度
![enter image description][1]
[1]: http://www.example.com/image.png '100x200' <-- widthxheight
我尝试了上面的方法,但改为设置图像标题。
输出将是
<img src="http://www.example.com/image.png" width="100" height="200" alt="enter image description">
protected function inlineImage($Excerpt)
{
if ( ! isset($Excerpt['text'][1]) or $Excerpt['text'][1] !== '[')
{
return;
}
$Excerpt['text']= substr($Excerpt['text'], 1);
$Link = $this->inlineLink($Excerpt);
if ($Link === null)
{
return;
}
$Inline = array(
'extent' => $Link['extent'] + 1,
'element' => array(
'name' => 'img',
'attributes' => array(
'src' => $Link['element']['attributes']['href'],
'alt' => $Link['element']['text'],
'width' => '',
'height' => ''
),
),
);
$Inline['element']['attributes'] += $Link['element']['attributes'];
unset($Inline['element']['attributes']['href']);
return $Inline;
}
最佳答案
此(引用)语法中的最后一个元素 [1]: http://www.example.com/image.png '100x200'
将作为 title
属性传递,因此您可以这样做:
class MyParsedown extends Parsedown
{
protected function inlineImage($Excerpt)
{
$Inline = parent::inlineImage($Excerpt);
if (!isset($Inline['element']['attributes']['title'])) { return $Inline; }
$size = $Inline['element']['attributes']['title'];
if (preg_match('/^\d+x\d+$/', $size)) {
list($width, $height) = explode('x', $size);
$Inline['element']['attributes']['width'] = $width;
$Inline['element']['attributes']['height'] = $height;
unset ($Inline['element']['attributes']['title']);
}
return $Inline;
}
}
如果
width
匹配 height
模式,则属性将更改为 title
+ NUMERICxNUMERIC
。您可能会限制位数或大小以防止破坏页面,还应排除前导 0(或仅包含 0
的大小)。关于php - 解析设置图像宽度和高度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41561684/