1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-15 16:59:43 +00:00
TiddlyWiki5/tw5.com/tiddlers/wikitextrules/StyleBlockWikiText.tid

22 lines
301 B
Plaintext
Raw Normal View History

2012-06-14 17:18:32 +00:00
title: StyleBlockWikiText
This syntax enables you to assign arbitrary styles to generated elements. For example:
{{{
@@color:#f00
This is in red!
@@
}}}
Generates the results:
@@color:#f00
This is in red!
@@
The HTML looks like this:
{{{
<p style="color:rgb(255, 0, 0);">This is in red!</p>
}}}