You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a programatic API in SLAX that would allow me to save data from XML format into SLAX?
I am looking for capability that can be achieved using "slaxproc -s -p".
No, I don't have that. But it's easy to add, as an extension
function that turns XML into a SLAX-friendly string, like:
var $s = xutil:xml-to-slax("<top><test/></top>");
where the output is:
<top> {
<test>;
}
The text was updated successfully, but these errors were encountered:
Subrata Mazumdar writes:
No, I don't have that. But it's easy to add, as an extension
function that turns XML into a SLAX-friendly string, like:
where the output is:
The text was updated successfully, but these errors were encountered: