Thank you for your answer.
But I get an error message when I validate my epub. All my instances of
Code:
<p><u>some tekst</u></p>
get this error.
So you're saying the validation is incorrect and I should just ignore it?
Quote:
element "u" not allowed anywhere; expected the element end-tag, text or element "a", "abbr", "acronym", "applet", "b", "bdo", "big", "br", "cite", "code", "del", "dfn", "em", "i", "iframe", "img", "ins", "kbd", "map", "noscript", "ns:svg", "object", "q", "samp", "script", "small", "span", "strong", "sub", "sup", "tt" or "var" (with xmlns:ns="http://www.w3.org/2000/svg")
|
Quote:
Definition and Usage
The <u> tag represents some text that should be stylistically different from normal text, such as misspelled words or proper nouns in Chinese.
--------------------------------------------------------------------------------
Tips and Notes
Tip: Avoid using the <u> element where it could be confused for a hyperlink.
Note: The HTML 5 specification reminds developers that other elements are almost always more appropriate than <u>.
--------------------------------------------------------------------------------
Differences Between HTML 4.01 and HTML5
The <u> element was deprecated in HTML 4.01. (the <u> element was used to define underlined text).
The <u> element is redefined in HTML5, to represent text that should be stylistically different from normal text, such as misspelled words or proper nouns in Chinese.
|