我是github的新手,README.md
想使用iframe显示HTML内容,这可能吗?
我尝试过的是,我只是创建HTML标记,然后再锚定,这是行不通的。
Answers:
正如mjgpy3回答的那样,您可以包含html-不需要<html>
标签,但是会在显示之前进行清理,并且唯一允许的标签在此白名单中。
该列表当前包括:
h1 h2 h3 h4 h5 h6 h7 h8 br b i strong em a pre code img tt div ins del sup sub p ol ul table thead tbody tfoot blockquote dl dt dd kbd q samp var hr ruby rt rp li tr td th s strike summary details caption figure figcaption abbr bdo cite dfn mark small span time wbr
但是没有iframe
。
您可以使用svg解决示例代码(./path/example.svg):
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
<foreignObject width="100" height="100">
<div xmlns="http://www.w3.org/1999/xhtml">
<ul>
<li>text</li>
</ul>
<!-- Other embed HTML element/text into SVG -->
</div>
</foreignObject>
</svg>
然后使用图片插入方式将svg文件嵌入其他任何markdown文件中,如下所示:
![](./path/example.svg)