Я пытаюсь взять XML-канал из стороннего источника и сгладить его.
Текущий XML-канал похож на это:
<properties>
<property>
<idnumber></idnumber>
<location>
<region></region>
<street-address></street-address>
<city-name></city-name>
<state-code></state-code>
<zipcode></zipcode>
<latitude></latitude>
<longitude></longitude>
</location>
<details>
<name></name>
<status></status>
<price></price>
<bedrooms></num-bedrooms>
<bathrooms></bathrooms>
<lot-size></lot-size>
<square-feet></square-feet>
<property-type></property-type>
<attributes></attributes>
<description></description>
</details>
<pictures>
<picture>
<picture-url></picture-url>
</picture>
</property>
</properties>
Однако мне действительно нужно сгладитьXML к этому:
<properties>
<property>
<idnumber></idnumber>
<region></region>
<street-address></street-address>
<city-name></city-name>
<state-code></state-code>
<zipcode></zipcode>
<latitude></latitude>
<longitude></longitude>
<name></name>
<status></status>
<price></price>
<bedrooms></num-bedrooms>
<bathrooms></bathrooms>
<lot-size></lot-size>
<square-feet></square-feet>
<property-type></property-type>
<attributes></attributes>
<description></description>
<picture>
<picture-url></picture-url>
</picture>
</property>
</properties>
Я читал таблицы стилей XLST, чтобы попытаться это сделать, однако я просто трачу свое время, так как исходный канал размещен на третьей стороне, в которой я не могуредактировать?