Hi,
I have an Inkscape file with a lot of layers, which contains all the part possibles for the body of a game sprite.
I have made a bash script who made a request to inkscape (inkscape -S <myFile>), select in the result all the lines begining by 'Layer' and then made for each another request for exporting this layer.
At first it's work fine, and i use this script lot of time for lots of sprite.
But today I've made heavy modifications on my svg files, and added lots of layers. And the script dont work anymore. I've found the reason : all my new layers don't have an id like "Layer<Number>", but instead of an id like "g<number>" (like all others groups).
Have you an idea of why my layers stop to be called with id "Layer<number>" ?
Thank you