Created
March 24, 2018 12:36
-
-
Save IchHabRecht/ebb8ac8b3402e970c9a43c0cfdd80de2 to your computer and use it in GitHub Desktop.
TypoScript-Kopie vs. Referenz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lib.foo = TEXT | |
lib.foo.value = blau | |
lib.bar < lib.foo | |
lib.foo.value = rot | |
=> lib.bar.value ist hier blau | |
lib.foo = TEXT | |
lib.foo.value = blau | |
lib.bar =< lib.foo | |
lib.foo.value = rot | |
=> lib.bar.value ist hier rot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment