0
很容易標記單個內容,然後將其作爲xml在inDesign中導出。如何標記inDesign文檔以使標記的內容位於其他標記之間?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root><content>Simple text block</content></Root>
我正在努力做的是讓它將標籤/內容導出到另一組標籤中。 例如:我想標記我的文檔,以便它導出爲這樣:
<?xml version='1.0' encoding='UTF-8'?>
<article>
<id>123</id>
<content>
<body>Some text</body>
<headline>Some other text</headline>
</content>
</article>
當我出口我得到了以下的XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<article>
<content>Simple text block</content>
<id>123</id>
<content></content>
<body>Some text</body>
<headline>Some other text</headline>
</article>
如何標記元素以便將標籤/內容導出到另一組標籤中?
非常感謝你 – grabury