Skip to content

Ruskko Tags

Kai edited this page Mar 19, 2020 · 1 revision

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.

Tags List:

Tag Name Tag open / Close Tag Reference
ID Tag <#myID></#> LINK
Class Tag <.myClass></.> LINK

Tags

IDTag

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.

ClassTag

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.

Clone this wiki locally