惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Martin Fowler
Martin Fowler
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
C
Check Point Blog
H
Help Net Security
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
P
Proofpoint News Feed
V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Vercel News
Vercel News
S
SegmentFault 最新的问题
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
博客园_首页
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏

Inside Nutrient

A guide to the invisible work behind documents Introducing Nutrient Documents for Salesforce: Native document generation and signing Document AI vs. traditional OCR: Choosing between OCR, AI, and hybrid pipelines PDF SDK compliance and security evaluation checklist for enterprise teams (2026) Invariant Corp replaces paper processes with Nutrient Workflow and scales without limits What is process mapping? A complete guide Nutrient vs. Conga Composer for Salesforce document generation (2026) Document routing: How to automate document distribution The CTO’s AI playbook: Why accountability architecture beats orchestration Compliance workflow automation: Why built-in compliance is table stakes Workflow diagrams: Examples, symbols, and how to build one that actually runs Digital forms: Replace paper forms with automated workflows Approval workflow software: How to automate approvals Why document-centric automation is different The CEO’s AI playbook: Why decision architecture beats model selection Nutrient SDK product updates for Q1 2026 PDF redaction verification: How to prove sensitive data is permanently removed What is a VPAT? The complete guide to accessibility conformance reports What is PDF/UA? The accessible PDF standard explained Salesforce eSignatures: Generate, sign, and track documents in one flow Online document viewer: Options, tradeoffs, and how to embed one Document viewer for web apps: React, Vue, Angular (2026) Best document viewers in 2026: A buyer’s guide How to edit a PDF in Python: Add text, images, and annotations Nutrient advances Workflow platform with agentic AI for enterprise-grade speed and consistency in document-heavy operations How to create a Salesforce quote template from opportunity data The business case for accessibility: Five ways it drives enterprise value Python PDF library comparison (2026): 7 libraries for developers Why your AI agent hallucinates PDF table data PDF.js limitations: When to upgrade to a commercial PDF SDK
Optimize PDF generation for workflow automation
Keith Stanislaw, Michael Del Regno · 2024-11-19 · via Inside Nutrient

Table of contents

    Optimize PDF generation for workflow automation

    Summary

    Nutrient Workflow Automation Platform enhanced its PDF generation capabilities by integrating Document Engine, replacing limited open source solutions with a flexible DOCX-based approach. The new system uses Mustache tags for dynamic data merging, supporting complex data types like grids with repeating rows and columns.

    In the past, Nutrient Workflow Automation Platform (formerly Integrify) used open source solutions to generate PDFs with data collected within the application. More specifically, these solutions used PDF templates as the starting point to merge data collected into the generated PDF. This solution worked for simple types of collected data; however, customers needed more complex types of data — such as grids with dynamic columns and rows — something that wasn’t possible with these open source solutions since we released the grid question type nearly 10 years ago.

    Solution

    Our document generation tool provided the solution we needed to deliver all the functionality customers desired. Our new solution uses DOCX files containing Mustache tags for merging data into the file. This solution:

    • Is easier for customers to use
    • Provides more flexibility in document formatting
    • Doesn’t require costly tools to build PDF templates
    • Supports repeating data Mustache tags to solve the aforementioned problem
    • Requires significantly less development effort than the previous solution
    • Enables us to generate more than just PDF documents

    Implementation

    We were able to quickly integrate Document Engine into our Kubernetes development environment by following the instructions found in the deployment guide. Once the pod was implemented in our environment, we had access to the full API library. The APIs we used for this solution were:

    • /api/process_office_template to generate a DOCX file from a DOCX file with Mustache tags and a JSON file specifying the data for each Mustache tag.
    • /api/build to generate a PDF file from the generated DOCX file.

    We were able to get a proof of concept working within a couple of hours by using a JSON file with hardcoded data. Then, we began developing a full solution within our workflow product. Our application allows users to create their own forms within the application. These forms collect a large portion of data that they need outputted to the generated PDF. There are also many other data elements that are associated with each process that users may want output to the PDF. Therefore, we have a requirement for users to map data to Mustache tags within the DOCX template.

    Form Builder example

    FormBuilder

    Form data collection example

    docx template

    To meet this requirement, we built a task configuration screen that allows users to upload their DOCX template containing the Mustache tags. It then extracts all the tags within the document and allows the user to configure a form field-to-Mustache mapping, which is used each time the task is executed in a process workflow.

    DOCX template example

    docx template

    Task config example

    docx template

    Mappings example

    docx template

    When the task runs, it calls Document Engine’s /api/process_office_template, supplying the form data in JSON that maps the data to Mustache tags, along with the DOCX file with the Mustache tags. In the DOCX file image example, you can see how between the Mustache tags {{#items}} and {{/items}}, there are repeatable tags representing columns in our grid question, which was mapped to the {{#item}} tag. The individual grid columns were then mapped to the repeatable tags within the {{#item}} and {{/item}} tags. If there’s data collected on the form that users don’t want to appear in the generated PDF, they simply don’t put Mustache tags in the DOCX file.

    JSON with Mustache and mapped data

    docx template

    Generated PDF returned from Document Engine

    docx template

    /*

    Node.js calling the `/api/process_office_template` Gather api parameters, config specifies the delimiters used in the template, and model is the value of the mapping data specified in the above screenshots (generalized here for space).

    */

    const model = {

    config: { delimiter: { start: "{{", end: "}}" } },

    model: {

    "Name": "John Doe",

    "Age": "30",

    "Address": "123 Main St",

    "City": "Anytown",

    "State": "CA",

    "Zip": "12345",

    "Phone": "555-555-5555",

    "Email": "jondoe@gmail.com",

    },

    {...},

    };

    // Append document and model to the request body.

    const formData = new FormData();

    formData.append(

    "document",

    new File([fileData], fileName, {

    type: fileType,

    })

    );

    formData.append("model", JSON.stringify(model));

    const requestOptions = {

    method: "POST",

    body: formData,

    headers: { Authorization: 'my authorization' },

    };

    const url = `${documentEngineUrl}/api/process_office_template`;

    const response = await fetch(url, requestOptions);

    // Node.js calling the `/api/build`.

    const formData = new FormData();

    formData.append(

    "document",

    new Blob([docxArrayBuffer]),

    fileName

    );

    const instructions = JSON.stringify({

    parts: [

    {

    file: "document",

    },

    ],

    });

    formData.append("instructions", instructions);

    const requestOptions = {

    method: "POST",

    body: formData,

    headers: {

    Authorization: "my authorization",

    },

    };

    const url = `${documentEngineUrl}/api/build`;

    const response = await fetch(url, requestOptions);

    const pdfResult = await responseForPdf.arrayBuffer();

    Conclusion

    By integrating Document Engine’s Office templating capabilities into our application, we were able satisfy our customers’ needs with minimal code. We recently released this functionality in production, and customers are ecstatic about the enhanced functionality Document Engine enabled us to provide them with.

    Explore related topics

    Try for free Ready to get started?

    Related SDK articles

    Explore more