.. include:: /Includes.rst.txt .. _stdwrap-order: ============== Heed the order ============== The single most important thing to know about `stdWrap` is that all properties are parsed/executed exactly in the order in which they appear in the :ref:`TypoScript Reference `, no matter in which order you have set them in your TypoScript template. Let's consider this example:: 10 = TEXT 10.value = typo3 10.noTrimWrap = |Tool: || 10.case = upper It results in the following: .. code-block:: html Tool: TYPO3 The `case` property is executed before the `noTrimWrap` property. Hence only "typo3" was changed to uppercase and not the "Tool:" with which it is wrapped.