I'm looking for a way to make a text template generator that has a base template with fillable sections. Once I've filled out all the sections and hit a done button, it should generate a ready-to-copy version of what I've input. I need it to run locally since I'm dealing with sensitive information, so it can't be web-based. Is this feasible?
3 Answers
You could use a templating engine like Razor or Ninja to set this up. They’re pretty flexible for creating forms with your templates.
You might consider using a PDF file with fillable fields. That way, you can keep everything local and still have a structured template that generates outputs.
There are several templating engines to choose from, like Jinja and Pug. Just pick one that suits your requirements. The good news is that many of them can be run locally, so your sensitive info remains safe.
Please tell me if these options can run offline, because I can't risk the info leaking.

But is there a way to do this without uploading sensitive info online? I really need to keep my data secure.