Now, I'm interested in the last item in the object above, and I can successfully rename DR:XmlImageArticle but not the nested key DR:ImageUri620x349. I can access it manually, but as I'm iterating over multiple feeds I'd really like to rename it to something more sensible. Parser options look like described in the ReadMe - including the nested value and renaming that does nothing.
Hi! Great library, thanks for the hard work.
I've encountered an issue (or I just don't know how to do it), where I'm trying to rename a nested field. The parsed object looks like this:
title: "Good Title", content: "Yadada", DR:XmlImageArticle: { DR:ImageUri620x349: ["URLImInterestedIn"] }
Now, I'm interested in the last item in the object above, and I can successfully rename
DR:XmlImageArticle
but not the nested keyDR:ImageUri620x349
. I can access it manually, but as I'm iterating over multiple feeds I'd really like to rename it to something more sensible. Parser options look like described in the ReadMe - including the nested value and renaming that does nothing.parserOptions: [['DR:XmlImageArticle', "img"]]
Any help appreciated!