I'm using CKEditor for enabling editing and I've requirement to export it to other formats.
Is it feasible to export the content of CKEditor as .doc format ?
Any help or refrence would be of great help.
Thanks,
It could be worth to see bellow.
https://www.codeproject.com/Tips/1193272/Convert-HTML-to-Word-document-using-CKEditor-and-M
The link explains how to create Office word from ckeditor with MariGold.OpenXHTML.
Hope this helps.
Related
The problem is when I copy and paste an image from "Paint" to the Syncfusion RTE it duplicates that image for some reason.
Using ej1 Version=18.3450.0.35 in Asp Net Web Forms
I've tried to update Syncfusion to the latest version but it didn't help.
Checked the clipboard and it has only one file, as expected.
Replicated that in the official Synfusion Demo:
https://asp.syncfusion.com/demos/web/richtexteditor/inlinetoolbar.aspx
Works well in another Syncfusion demo:
https://asp.syncfusion.com/demos/web/richtexteditor/paste-cleanup.aspx
I've tried to put the same RTE as in the second (working) demo but it doesn't work for me.
Any ideas will be appreciated!!!
.aspx file
c# RTE initialization and tools
Fixed by removing 'html' from the 'style' section in the RTE innerHTML.
The reported issue is fixed in your mentioned version “18.3.0.35” in RTE, so kindly ensure this after clearing NuGet and browser cache in your sample.
Please refer to the following release notes.
https://help.syncfusion.com/js/release-notes/v18.3.0.35?type=all#ejrte-bug-fixes
We have also attached a simple sample in this version for your reference where pasting images from paint is working fine.
https://jsplayground.syncfusion.com/fkjqifbh
I am using CKEditor in my Laravel application. I want to create an option to delete the uploaded image via CKEditor if the user is not needed that image. Please help me in this. Thank You!
there is something called CKFinder
maybe it will helps to find the file and remove it
I'm using ace editor with "html" mode for web programming as a web IDE. I can highlight code for HTMl, CSS and JavaScript. It works nicely. This is my code:
editor.getSession().setMode('ace/mode/html');
I'd like to embed coffeescript and typescript syntax highlight too when using the
<script type='text/coffeescript'>
and
<script type='text/typescript'>
tags on the page. Ace does have modes for these languages but they are separate files (mode-coffee.js and mode-typescript.js) and I don't know how I could embed these into mode-html.js. The code is rather complicated.
Could you kindly help me out? I've been studying these files for several hours now and I'd appreciate any help. Thank you.
This is currently not possible. We are looking into adding this as a feature, which is being tracked by a GitHub issue here.
I am using CKEditor in my project. The requirement is to make the font name and font size changed dynamically based on user settings which we configure in one place. I am looking for a suitable solution which helps me to change the fonts in CKEditor. I had done some modification in the config using the
Have tried Is there a way to set the default font and font-size in CKEditor? but no luck
Any help will be always appreciated.
Thanks in Advance.
You can try to use contentsCss. Which will load your css rules to editor's content.
Example what you can do with that you can find here: https://sdk.ckeditor.com/samples/styles.html
We are trying to create an editor environment as like a Ms-Word. Please let us know the following points are possible using CKEditor.
Is it possible to do the Find/Replace option using wildcards or regular expression feature in CKEditor as like Ms-Word environment.
Is it possible to import word documents into the CKEditor with all the formatting.
Looking forward your help.
sadly it's not evident which programming language you use.
ckeditor is availible as java library and for webpages. I will suppose that you want to use it as a wysiwyg editor on your homepage.
1) There are some Plugins for ckeditor that support this features. Please take a look at the official homepage.
2) Not as easy as you wish. The simplest was to do that is:
- convert the doc/docx file to a html file
- import that html file
If you want that your clients could upload a word file and work with it in your editor your best chance is to use the googledocs api to convert your word file to a html file and then use it in your editor.
That's the only way I know.