Tagged Questions

FMPP is a general-purpose text file preprocessor tool that uses FreeMarker templates.

learn more… | top users | synonyms

2
votes
4answers
421 views

Does anyone know of a Python equivalent of FMPP?

Does anyone know of a Python equivalent for FMPP the text file preprocessor? Follow up: I am reading the docs and looking at the examples for the suggestions given. Just to expand. My usage of FMPP ...
1
vote
2answers
196 views

one template to several output files with fmpp

I want to set up an maven plugin that will take a few freemarker templates, and expand each one several times, each time with a different set of input values. Is there any better way to do this with ...
0
votes
1answer
135 views

Freemarker model convert timestamp in milliseconds to date

I have a csv-file which i want to transform with fmpp (freemarker). The first column is a long value (milliseconds since 1.1.1970) which i want to convert into a date and format it as datetime. src ...