I've the dictionary in inside the tag and I wanted to create the table from it. Here is the xml file I've
<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>
And here is my 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>
Now my question is how to create a table from the dictionary value?
| thread_id | relative_to_thread_interactors |
|--------------------------|--------------------------------|
| 5e778ef9a28f2b51fec330A3 | 2.0 |