pull/6147/head
Niklas Fiekas 2020-03-09 13:38:47 +01:00
parent 8bbc435673
commit c21158b380
3 changed files with 16 additions and 3 deletions

View File

@ -67,7 +67,12 @@ trait ScalatagsSnippets extends Cap {
} }
val utcLink = val utcLink =
a(href := "https://time.is/UTC", target := "_blank", rel := "noopener", title := "Coordinated Universal Time")("UTC") a(
href := "https://time.is/UTC",
target := "_blank",
rel := "noopener",
title := "Coordinated Universal Time"
)("UTC")
} }
// basic imports from scalatags // basic imports from scalatags

View File

@ -44,7 +44,11 @@ object wall {
li(trans.clas.newsEdit3()), li(trans.clas.newsEdit3()),
li( li(
trans.clas.markdownAvailable( trans.clas.markdownAvailable(
a(href := "https://guides.github.com/features/mastering-markdown/", target := "_blank", rel := "noopener")( a(
href := "https://guides.github.com/features/mastering-markdown/",
target := "_blank",
rel := "noopener"
)(
"Markdown" "Markdown"
) )
) )

View File

@ -61,7 +61,11 @@ object form {
form("markup"), form("markup"),
fullDescription(), fullDescription(),
help = fullDescriptionHelp( help = fullDescriptionHelp(
a(href := "https://guides.github.com/features/mastering-markdown/", target := "_blank", rel := "noopener")("Markdown"), a(
href := "https://guides.github.com/features/mastering-markdown/",
target := "_blank",
rel := "noopener"
)("Markdown"),
20000.localize 20000.localize
).some ).some
)(form3.textarea(_)(rows := 10)), )(form3.textarea(_)(rows := 10)),