我正在用python生成以下xml格式,以将帖子批量导入博客。我已经看到,使用Web表单时,博客作者可以选择为帖子设置标题链接。
您知道我如何修改下面的xml以包含标题链接吗?
<?xml version="1.0" encoding="UTF-8"?><ns0:feed xmlns:ns0="http://www.w3.org/2005/Atom"> <ns0:generator>Blogger</ns0:generator> <ns0:entry> <ns0:category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/blogger/2008/kind#post" /> <ns0:category scheme="http://www.blogger.com/atom/ns#" term="CATEGORY C" /> <ns0:category scheme="http://www.blogger.com/atom/ns#" term="CATEGORY D" /> <ns0:id>Sample Blog Post</ns0:id><ns0:content type="html">Blogger CONTENT 2</ns0:content> <ns0:published>2019-10-30T03:22:00.001-07:00</ns0:published> <ns0:title type="html">Sample Blog Post</ns0:title> </ns0:entry> </ns0:feed>
谢谢!
答案 0 :(得分:1)
标题链接在导出的XML中另存为tags
链接。可以使用以下格式-
<parent-comp>
<child1> </child1>
<child2> </child2>
</parent-comp>