Skip to main content
13 of 16
deleted 408 characters in body
William
  • 7.7k
  • 2
  • 24
  • 76

Convert `FullForm` to XML Structure and back

How might I create a function that converts between FullForm and a XML structuce?

Ultimately I'm ideally looking to use CSS and JS to edited the XML structure.

For example using jquery I might do something like $('Times Power').

Ideally I'm looking for the following code to export the following xml.

Times[Rational[1, 2], "test"] 

to

<Times> <Rational> <Number>1</Number> <Number>2</Number> </Rational> <String>test</String> <\Times> 
William
  • 7.7k
  • 2
  • 24
  • 76