- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
shortForm method in Xhtml
Sun, 2009-05-17, 11:16
Hi there,
In scala.xml.Xhtml, shortForm has been defined as follows[1],
def shortForm =
minimizeTags &&
(x.child == null || x.child.length == 0) &&
!(List("div", "script", "textarea") contains x.label)
IMHO, there must be discussions, but the following definition may be better,
according to XHTML-1.0-strict DTD specification[2],
private val emptyElements = List("base", "meta", "link", "hr",
"br", "param", "img", "area", "input", "col")
def shortForm =
minimizeTags &&
(x.child == null || x.child.length == 0) &&
(emptyElements contains x.label)
emptyElements may be too long and you may want to delete some of tags from it.
[1] https://lampsvn.epfl.ch/trac/scala/browser/scala/trunk/src/library/scala...
[2] http://www.w3.org/TR/xhtml1/dtds.html#a_dtd_XHTML-1.0-Strict
Sincerely,
--
Atsuhiko Yamanaka
JCraft,Inc.
1-14-20 HONCHO AOBA-KU,
SENDAI, MIYAGI 980-0014 Japan.
Tel +81-22-723-2150
+1-415-578-3454
Fax +81-22-224-8773
Skype callto://jcraft/