Most voted "dtd" questions
The Document Type Definition, or simply DTD, contains the rules used for creating XML documents and other markup languages. These rules define which tags and attributes of these can be used in the document and their valid values. If the question is not about the "DTD", do not use this tag, even if you are using the "DTD" in your project.
Learn more…3 questions
Sort by count of
-
14
votes3
answers1496
viewsWhat is DTD (Document Type Definition)?
How this technology works and how it relates to other technologies currently used, such as DOM, Xpath and Xquery? I’m not looking for something totally thorough, an overview, the way to create a…
-
5
votes1
answer91
viewsUrls in doctype and html tags
1) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2) <html xmlns="http://www.w3.org/1999/xhtml"> HTML5 removed…
-
1
votes0
answers24
viewsDifference between + inside and outside DTD parentheses
Recently, I was developing a DTD to validate a data XML, and I was wondering if there’s any difference between these two expressions: <!ELEMENT examples (example+)> ("+" dentro dos parênteses)…