HTML structure modified by Studio

Hi,

 

We have encountered a problem in translating HTML files for a client.

 

Studio has apparently modified the structure of the HTML files meaning that the client cannot reintegrate them.

 

For example, one file that originally contained 60 lines in notepad++, contained just 36 in the target file after translation. All of the code is there, but has been grouped into blocks in some sections.

 

Unfortunately this is the case for several files, and we have translated over 200 in total.

 

Does anyone have an explanation or solution for this problem?

 

I can provide an example via PM if needed.

 

Many thanks for your help!

 

Clémentine

Parents Reply
  • The explanation most probably is that from the HTML format standard perspective, the missing part is simply unneeded.

    The "DOCTYPE html" definition clearly defines what kind of document it is and which HTML standards it follows, i.e. the "content-type: text/html" additional information is pretty much irrelevant and unneeded.

    Target HTML is not generated by Studio itself, but by a certain sub-component which generates the HTML according to appropriate HTML standards... i.e. the generated syntax should be perfectly fine.

    The problem I've seen quite often is that clients' systems do not follow international standards (e.g. because they were developed by internal unexperienced programmers) and often rely on things inside the data files which are either unneeded, or even purely incorrect...
    So it could very well be that this is one of such cases...

Children