
json2docx-templater-v1
Pricing
Pay per usage
Go to Store

json2docx-templater-v1
converts json content and docx template into filled docx templates
0.0 (0)
Pricing
Pay per usage
0
Total users
1
Monthly users
1
Runs succeeded
>99%
Last modified
2 months ago
json2docx-templater v1
INPUT CONTENT JSON EXAMPLE
{"title": "Awesome content","simple_text": "some simple text here","chapter 1": {"some_text_in_chapter1" : "some text in chapter 1"},"chapter 2": {"my_list": ["Anna","Bea","Cecile"]},"chapter 3": {"my_bullet_list": ["Alex","Bill","Chris"]},"dance party": {"my_table": [{"who": "Anna","with_who": "Bill"},{"who": "Bea","with_who": "Chris"},{"who": "Cecile","with_who": "Alex"}]}}
INPUT TEMPLATE DOCX EXAMPLE
#title#
Okay, so we start off with some simple text here.
#simple_text#
Chapter 1
#some_text_in_chapter1#
Chapter 2
#my_list(item)#
Chapter 3
#my_bullet_list(item)#
Dance party pairs
#my_table(who,with_who)#
WHO | WITH WHO |
---|
OUTPUT FILLED DOCX DOCUMENT
Awesome content
Okay, so we start off with some simple text here.
some simple text here
Chapter 1
some text in chapter 1
Chapter 2
- Anna
- Bea
- Cecile
Chapter 3
- Alex
- Bill
- Chris
Dance party pairs
WHO | WITH WHO |
---|---|
Anna | Bill |
Bea | Chris |
Cecile | Alex |