Abstract
As you know by now, I’ve been having a fun time playing around with our Adobe Document Generation API service (be sure to see my intro and follow up on complex conditional logic). It provides an easy to use API for generating PDFs and Microsoft Word docs based on a template and your data. Today I’m going to give you a deep dive into another topic — formatting.
When I talk about formatting, I’m talking about ways to display information nicer in your documents. Imagine for a moment the following text in your Microsoft Word document:
Sales for cat toys and treats over the past year were ${{ salesTotal }}.
Now imagine the data sent to our Document Generation API included this value:
{
// other stuff would be here of course...
"salesTotal":45309435
}
Read Full Blog
Q&A
Please use this thread to ask the related questions.
Kautuk Sahni