How can I export to Word from a blog post? The only option is to export to PDF...
The option isn't there, but if you go to Confluence Admin -> Custom HTML and put this in the "After Body" section it should show up.
<script type="text/javascript"> AJS.toInit(function() { if(AJS.$('#action-export-word-link').length == 0) { var html = '<li><a id="action-export-word-link" href="' + AJS.Meta.get('base-url') + '/exportword?pageId=' + AJS.Meta.get('page-id') + '" class="action-export-word active" title=""><span>Export to Word</span></a></li>'; AJS.$('#action-export-pdf-link').after(html); } }); </script>
Hey, no problem. Feel free to mark it as answered ... it is the little check box below the up down arrows.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome. This worked perfectly. Thanks Davin!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.