@tomas-chrastina said in Unable to load Auto Complete file:
Hi,
finally I downloaded files. I checked file using XML Tools, and found errors. So you need to correct them.
First you should use escaped characters for attribute values of generated XML file (it will solve most of errors I can see):
< -> <
> -> >
& -> &
" -> "
…To change this lines containing special characters like:
<Param name="&flags"/> <Overload retVal=">" ...I don’t know python, but it should be easy to implement escaping for you I guess -> Escaping XML.
Then simply use XML Tools to check file, until it will be correct.
Hint: You can use for new line in descr attribute. It will made file easier to read.
descr="1st Line
2nd Line"
--- Best regards, Tomas.
Thanks.