我想将 HTML 页面转换为 Google AMP 页面,但我遇到了这个问题,我有很多<img>
想要转换为<amp-img>
标签的内容。
比如我想转:
<img src='apa.png'><br>
hi bro <img src="c.png'>
变成这样的东西:
<amp-img src="apa.png" width="800" height="684" layout="responsive" alt="AMP"></amp-img><br/>
hi bro <amp-img src="c.png" width="800" height="684" layout="responsive" alt="AMP"></amp-img>
我试图用 PHP 替换这些标签,但没有奏效。