Lauris BH
Lauris BH
one use case for example would be to use `github.com/buildkite/terminal-to-html` to render code block for language `console`
Could you send sample TMX file with assets from example folder?
To implement this it needs to rewrite how layers are parsed and represented in API so that there is single base layer type for all (layers, groups, objectgroup, image)
Problem with current xml parsing is that there is no way to know order in what layers are in as they are split to multiple properties (Layers, ObjectGroups, Images, Groups)
I don't think xmlquery is needed, just need to make custom unmarshall function and refactor types: ``` type LayerBase struct type Layer struct *LayerBase type ObjectGroup struct *LayerBase etc ```
Yes, I'm working on it but it will be breaking change to API
can't really give any estimate, will be quite busy this month so most probably February
Please rebase with master branch and if examples are fixed this could be merged in
Other option could be implement custom MarshalXML functions for types that contain `Visible` or `Kerning` as currently not all `Visible` properties are changed.
I don't quite like changing bool to pointer so imho custom xml encoder would be better