Any recommended tools to format .tpl
files? Especially for use in a CI system
#1136
Answered
by
wisskid
JohnVillalovos
asked this question in
Q&A
-
Are there any recommended tools to use to format Thanks for any advice! |
Beta Was this translation helpful? Give feedback.
Answered by
wisskid
Jun 20, 2025
Replies: 1 comment 1 reply
-
js-beautify can format .tpl files. For example, you can run: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
JohnVillalovos
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
js-beautify can format .tpl files. For example, you can run:
js-beautify --type html --templating smarty --indent-size 4 --replace path/to/templates/*.tpl
.