我有一个网站结构,我使用函数来最大化代码重用。有时我需要一个页面来添加更多脚本或样式表到html页面的头部。下面的代码做了我想要的,除了我被迫使用div
或其他标签来包含其余的scalatags。我真的不想在我的文档的主要部分中使用随机div
标记。是否有一些我可以用于此目的的通用/空标签? (tag("")
造成编译错误。)
import scalatags.Text.all._
class Temp {
def document = html(
head(
script("some javascript"),
extraScripts
),
body(
h1("A website")
)
)
def extraScripts = div( // <-- This div is the part I want to change
script("More scripts"),
script("and what not")
)
}