Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions scalatags/src/scalatags/stylesheet/Core.scala
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,12 @@ trait StyleSheetTags{
protected[this] val h6 = Selector("h6")
protected[this] val header = Selector("header")
protected[this] val footer = Selector("footer")
protected[this] val section = Selector("section")
protected[this] val nav = Selector("nav")
protected[this] val article = Selector("article")
protected[this] val aside = Selector("aside")
protected[this] val address = Selector("address")
protected[this] val main = Selector("main")
// Grouping content
protected[this] val p = Selector("p")
protected[this] val hr = Selector("hr")
Expand All @@ -191,6 +197,7 @@ trait StyleSheetTags{
protected[this] val s = Selector("s")
protected[this] val cite = Selector("cite")
protected[this] val code = Selector("code")
protected[this] val codeblock = Selector("codeblock")
protected[this] val sub = Selector("sub")
protected[this] val sup = Selector("sup")
protected[this] val i = Selector("i")
Expand Down