SVG图片也可以用于Marp。SVG可以始终保持清晰度,而且占用空间又很少。
在VSCode中你可以直接编写纯文本的SVG文件,或者你也可以使用InkScape这样的工具快速绘制。
<svg xmlns="http://www.w3.org/2000/svg">
<rect width="100" height="40cm" fill="aqua"/>
<text x="50" y="50" writing-mode="tb" font-size="36">
Godot4.3 精品课件系列
</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="100">
<rect width="100%" height="70" fill="#d8e615"/>
<text x="50" y="50" font-size="36">
Godot4.3 精品课件系列
</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="1000">
<path fill="#39f8f8"
d="M100,100 L300,300 L200,500 L100,100" />
<path stroke="#b7e450" fill="none"
d="M400,400 L600,600 L200,800 L100,500 L400,400" />
</svg>