废话先不多说,直接上个图说明问题:
对就是网页源代码中,在博客园的 Markdown 格式的博客中,是可以解析一些 html 标签的,我用的就是简单的 <div> 与 <svg> 标签。通常的方法是下面这样的:
<table>
<tr>
<td>
<svg width="140" height="170">
<title>SVG Sample</title>
<desc>This is a sample to use SVG in markdown on the website cnblogs.</desc>
<circle cx="70" cy="95" r="50" style="stroke: black; fill: none;"/>
</svg>
</td>
</tr>
</table>
或者是
<div width="100%" style="overflow-x: auto;">
<svg width="140" height="170">
<title>SVG Sample</title>
<desc>This is a sample to use SVG in markdown on the website cnblogs.</desc>
<circle cx="70" cy="95" r="50" style="stroke: black; fill: none;"/>
</svg>
</div>
这样的
那么代码可以转 SVG, 那么 SVG 可不可以转代码呢?
这里我要吹爆 画图软件
对,他可以直接讲 SVG 以源代码的格式导出,画图的时候以 SVG 源代码格式导出,直接放在 <div> 标签里面,就可以了: