我正在开发 Gatsby 静态站点,因此我想使用 MDX 创建有关已完成项目的页面。在 Gatsby 中使用 MDX 的标准语法是否有区别:
![alt](path/to/image)
并使用普通标签:
<img src="path/to/image" alt="alt" />
“gatsby-remark-images”是否处理使用常规 img 标签导入的图像,或者它只理解文档中的方法?
我问是因为我需要对图像进行样式设置,当我像下面的示例那样编写代码时,我得到了很大的嵌套结构。
<figure>
![alt](path/to/image)
</figure>
带有常规 img 标签的代码更简单,它不包含 p、span 等。
<figure>
<img src="../images/test-work-img3.jpg" alt="alt text for small image" />
<figcaption>Caption text for small image</figcaption>
</figure>
谢谢!