API & Dynamic Content

What are beautifulizers?


Beautifulizers are 'commands' that you may add to the code in order to display the text
in the desired manner, e.g. to display the text in upper cases only.

The following beautifulizers can be used:



  • lc() – Lower case all characters. ComPUTer will be inserted into message as computer.

  • uc() – Upper case all characters. coMPuTEr will be inserted into message as COMPUTER.

  • ucfw() – Upper case first letters in each word and lower case other. o'reilly bOOk PUBLISHING
    will be inserted into message as O'Reilly Book Publishing. Note that this beautifulizer also recognizes parts that should not be upper cased. Ludwig VAN beethoven Jr will be inserted as Ludwig van Beethoven jr. Current list of exceptions consists of: von, van, bin, ibn, mgr, dr,
    prof, imc, jr and may be extended if needed.

  • ucfs() – Upper case first letter of every sentence and lowercase other letters. how ARE you?
    i'm FINE. will be inserted into message as How are you? I'm fine.

Back To Frequently Asked Questions

Please wait...