On Friday, September 12, 2014 1:35:07 AM UTC-7, jim wrote: > > I'd need a small macro with no other purpose than putting a specified text > to lower/upper case. I am sure this isn't difficult to implement; > nevertheless I require your help. >
You can achieve this using inline CSS, like this: @@text-transform: uppercase;test this@@ @@text-transform: lowercase;TEST THIS@@ You can create macros to encapsulate the CSS, like this: \define lower(text) @@text-transform: lowercase;$text$@@ \end \define upper(text) @@text-transform: uppercase;$text$@@ \end which you could then use, like this: <<lower "This TEXT will APPear in ALL LoWeR case">> <<upper "This TEXT will APPear in ALL UpPeR case">> enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios YOUR DONATIONS ARE VERY IMPORTANT! HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"... http://TiddlyTools.github.com/fundraising.html#MakeADonation Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/d/optout.

