Not a developer? Go to MovableType.com

Documentation

ltrim

Trims all leading whitespace from the input.

Example

A scenario: many Entries in your blog have been written with leading spaces, perhaps as a result of copy-paste. An entry reads “    Learning about tag modifiers”; notice the leading spaces. ltrim to the rescue!

<mt:EntryTitle ltrim="1">

Now your entry title publishes as “Learning about tag modifiers.” Success!

Back