Can FormVu output as a single file?
Yes FormVu can output as a single HTML file. By combining 4 different settings, all external assets (such as Fonts and JavaScript) can be embedded or inlined into the HTML file.
The settings required for this are:
- setEmbedImagesAsBase64Stream (true)
- setIncludedFonts (woff_base64 and/or otf_base64)
- setInlineJavaScriptAndCSS (true)
- setInlineSVG (true)
By using the above configuration the output will result in a single HTML file (form.html).
Note: Web browsers have to parse and render the whole document on load. For files with numerous pages or that are particularly complex, the form may be slow to load.