【发布时间】:2013-09-26 14:27:43
【问题描述】:
我们需要将 TinyMCE 中生成的过时字体标签迁移到 CMS 中的新跨度标签。
<font face="timesnewroman,times" size="7"><child>something</child></font>
<span style="font-family: timesnewroman,times; font-size: 12pt;"><child>something</child></span>
如何最好使用 BeautifulSoup 来做到这一点? (目前我使用的是 3.2.1 版本) 您能否告诉我 Python 中是否有任何方法可以将字体-> 跨度标记替换为上述样式属性集?我确实知道一些像 replaceWithChildren 这样的方法,但这不会满足我的需要。有什么想法吗 ?
【问题讨论】:
标签: python html beautifulsoup