我试图在我的帖子中加入SVG,但WordPress似乎删除了内容。
e、 g。
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="190">
<polygon points="100,10 40,180 190,60 10,60 160,180"
style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;">
</svg>
渲染到
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="190"></svg>
如果没有像raw\\u plugin这样的插件,是否可以做到这一点
最合适的回答,由SO网友:qed 整理而成
根据this post, 如果将所有svg块放入one line, 它将被渲染。
这应该可以:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="190"> <polygon points="100,10 40,180 190,60 10,60 160,180" style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;"> </svg>