Accessibility
This feature enables developers to configure and manage accessibility options in the builder. With this API, you can define a custom iframe title for the builder and specify a custom title for the exported HTML. This functionality is supported in both display modes: emails and web pages.
unlayer.init({
editor: {
title: 'Editor Iframe Title',
},
});
In this example, the builder iframe title is set to “Editor Iframe Title”.
You can also pass a custom title to the unlayer.exportHtml()
method to set the title of the exported HTML during the export process.
unlayer.exportHtml(console.log, { title: 'Exported HTML Title' });