У меня есть словарь внутри тега, и я хотел создать таблицу из него. Вот файл xml, который у меня есть
<parent>
<thread thread_id="5e778ef9a28f9a51fec330b4">
{'relative_to_thread_interactors': 1.0, 'relative_to_self_threads': 1.0}
</thread>
<thread thread_id="5e778ef9a28f2b51fec330A3">
{'relative_to_thread_interactors': 2.0, 'relative_to_self_threads': 1.0}
</thread>
</parent>
А вот мой xslt
<xsl:for-each select="parent/thread">
<tr>
<td><xsl:value-of select="@thread_id"/></td>
<td><xsl:value-of select="thread"/></td>
</tr>
</xsl:for-each>
Теперь у меня вопрос, как создать таблицу из значения словаря?
| thread_id | relative_to_thread_interactors |
|--------------------------|--------------------------------|
| 5e778ef9a28f2b51fec330A3 | 2.0 |