-
Notifications
You must be signed in to change notification settings - Fork 0
Ruskko Tags
On this page, you will find a full reference of tags supported by Roskko. Below you have quick links to everywhere you need to go. Every tag translates to a readable HTML tag.
Tag Name | Tag open / Close | Tag Reference |
---|---|---|
ID Tag | <#myID></#> | LINK |
Class Tag | <.myClass></.> | LINK |
This tag is a span tag with the ID of whatever you wish. Usage: <#idName>Stuff for that ID</#>
. Note this will swallow up the entire line, however, it does what it says it does. It turns the actual tag into a span, and the ID will be set to whatever is directly after # until the tag label is closed with >. It also supports multiple IDs.
This tag is a span tag with the class of whatever you wish. Usage: <.myClass>Stuff for the class</.>
. Note this will swallow up an entire line, however, it does what it says it does. Turns the actual tag into a span with the class set to whatever is directly after the . until the tag label is closed with >. It also supports multiple classes.