I need your often so helpful advice: I would like to create a solution that is as simple as possible and includes the following:
- Data (text) is entered manually in a table. The table has a maximum of 8 columns and 10-50 rows, depending on the project. Some rows might contain multiline text. Special characters like () {} ββ / | are common as part of the strings.
- Keyboard Maestro fills a text template from the data in the table. Whenever the action is executed, a new row is processed into a template which is then pasted. This is part of a larger workflow.
Example table:
Description en | Source | Date | Author | Permission | License |
---|---|---|---|---|---|
Horse and a pond | own reproduction | 1822 | Magnus Torstenson | not required | {{Cc-zero}} |
Fish and forest | own reproduction | 1931 | SΓΆren McCave | not required | {{Cc-zero}} |
Example template
{{Information
|Description=
|Source=
|Date=
|Author=
|Permission=
|other_versions=
}}
== {{int:license-header}} ==
Expected result:
{{Information
|Description=Horse and a pond
|Source=own reproduction
|Date=1822
|Author=Magnus Torstenson
|Permission=not required
|other_versions=
}}
== {{int:license-header}} ==
{{Cc-zero}}
Regarding the table part, I have Numbers and TableFlip available. Whenever another application is recommendable, just tell me, but I won't buy Excel for this.
How would you approach this problem (please basic advice, donβt spend your valuable time writing a macro for me)?
Thanks a lot.