Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/magik6k/simpletags


https://github.com/magik6k/simpletags

scala scalajs

Last synced: 3 days ago
JSON representation

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)))
}
```