# UPDATES
I've coded a new plugin https://github.com/marcus-sa/trinity-dom
I got this idea off the already existing package for Scala.js ScalaTags plus it makes it more React like.
Before you would code it inline like this:
https://pastebin.com/BCgQPFcE
Now you can just do like this instead:
https://github.com/griimnak/Trinity3...Admin/Login.js
Coded the ability to also add CSS properties to the HTML tags.
e.g
PHP Code:
section({ style: { outlineStyle: 'dotted', outlineColor: '#00ff00' } })(
span({ style: { color: 'red' } })(
'Fuck yer nan!'
)
)