Hi all !
I really need help with some tag/script stuff. I’m a newbie on that topic and for a job offer I have to do some things with tags (html I believe?).
Does anyone know the meaning of: UI_G br then there’s a text here br more text here UI_G (they have “< >” before and after)
What do these tags mean? If i’m not mistaken br is to skip a line, right? And the other?
Also, if I have this: some text here .\n\n more text. Does it mean skipping two lines?
Thanks in advance for your help ! Really need it and appreciate it.
Thank you so much for your quick reply !
Actually, they just gave me a text to translate with “<“UI_G”>”<“br”>" Random text here “<“br”>” More random text here “<“br”>” more text “<”/UI_G">". All that without the quotation marks.
The problem is that I do not have any context, I was just sent this. I’ll send them an email asking them that.
Anyways, thank you very much for your help !
AFAIK, there are no tags or element names that contains an underscore in any published DTD. No Doc-type markup declaration or Name-space documant has names with underscore.
Possibly that “element” tag is a typo, or a noob misunderstanding, and should instead be e.g: <p class="UI_G"> </p>
<UI_G><br>Random text here <br> More random text here <br> more text </UI_G>
If that text/code snippet would be “translated” by a browser it would be this:
Random text here
More random text here
more text
Please do inform them that:
The <UI_G> and </UI_G> is simply ignored while the <br> is translated to line-breaks. Though the wordprocessor equvalent “CR/LF” would actually close the current text paragraph and further typing should start a new, In html that would be <p> and </p>