Text Formatting

Knackly can manipulate the formatting for written text in a finished document. Note that our variables may differ from yours, but the formatting will remain the same after |format


No change to text:

{[DescriptionOfServices]}

All uppercase:

{[Client.FirstName|upper]} {[Client.MiddleName|upper ]} 
{[Client.LastName|upper]}

All lowercase:

{[Client.FullName|lower]}

Initial capitalization for a text box:

{[DescriptionOfServices|initcap]}

Initial capitalization for the first word and the rest lowercase:

{[DescriptionOfServices|initcap:true]}

Initial capitalization for every word (doesn’t force capital words to lowercase):

{[DescriptionOfServices|titlecaps]}

Initial capitalization for every word and the rest of the words are forced to lowercase:

{[DescriptionOfServices|titlecaps:true]}

Showing blank lines in the document if the text variable is not answered:

Spouse’s Information

First Name: {[Spouse.FirstName|else:"{[First Name]}"]}
Middle Name: {[Spouse.MiddleName|else:"_________"]}
Last Name:  {[Spouse.LastName|else:""]}

The output for the above three lines of code:

First Name: {[First Name]}

Middle Name: __________

Last Name:

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us