Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/magik6k/simpletags
https://github.com/magik6k/simpletags
scala scalajs
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/magik6k/simpletags
- Owner: magik6k
- License: mit
- Created: 2016-04-15T20:38:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-04-15T20:48:02.000Z (over 8 years ago)
- Last Synced: 2024-12-05T16:29:23.658Z (20 days ago)
- Topics: scala, scalajs
- Language: Scala
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simpletags
A very simple tag library for https://www.scala-js.org/ with great integration with scalajs-dom
```scala
import net.magik6k.simpletags.Tags._
import org.scalajs.dom._def saySomething(text: String) {
document.getElementById("main").appendChild(span("Important message: ", strong(text)))
}
```