diff --git a/modules/ROOT/examples/live-demos/exportpdf-v2/index.js b/modules/ROOT/examples/live-demos/exportpdf-v2/index.js
new file mode 100644
index 0000000000..68fac1e295
--- /dev/null
+++ b/modules/ROOT/examples/live-demos/exportpdf-v2/index.js
@@ -0,0 +1,31 @@
+tinymce.init({
+ selector: 'textarea#exportpdf-v2',
+ height: '800px',
+ plugins: [
+ "exportpdf", "advlist", "anchor", "autolink", "charmap", "code", "codesample", "fullscreen",
+ "help", "image", "insertdatetime", "link", "lists", "media",
+ "preview", "searchreplace", "table", "visualblocks",
+ ],
+ toolbar: "undo redo | exportpdf | styles | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image",
+ image_caption: true,
+ exportpdf_converter_options: {
+ version: '2',
+ document: {
+ size: 'A4',
+ orientation: 'portrait',
+ margins: {
+ top: '1in',
+ right: '1in',
+ bottom: '1in',
+ left: '1in',
+ enable_mirror_margins: true
+ }
+ },
+ metadata: {
+ title: 'Streamline LMS Overview',
+ author: 'TinyMCE',
+ subject: 'Learning Management System',
+ keywords: [ 'LMS', 'education', 'Streamline' ]
+ }
+ }
+});
diff --git a/modules/ROOT/examples/live-demos/exportpdf/index.html b/modules/ROOT/examples/live-demos/exportpdf/index.html
index 6dd3537e02..0d0ec28f2d 100644
--- a/modules/ROOT/examples/live-demos/exportpdf/index.html
+++ b/modules/ROOT/examples/live-demos/exportpdf/index.html
@@ -1,4 +1,7 @@
-