wysiwyg

Which WYSIWYG editor is best for a content management site?

邮差的信 提交于 2019-12-03 09:45:31
问题 The editor I require, needs to be easy to use. Even for people with absolutely no HTML knowledge The projects I have tried are: TinyMCE ckeditor.com What I'm looking for is: Editor like TinyMCE editor with a live view like in stackoverflow site. A way to insert pictures, and arrange them in the article. EDIT: THe best solution that I think about it right now is to use: TinyMCE for WYSIWYG editor. Write custom code that will show it live in real article format. Write Ajax code that will upload

MathML, Latex or similar for web-based WYSIWYG editor [closed]

依然范特西╮ 提交于 2019-12-03 07:44:13
I am looking for a web-based WYSIWYG (or WYSIWYM) editor like TinyMCE or WMD Editor (used to write this question) that supports users to write mathematical formulas. I have looked at LaTeX a little bit but it has a learning curve and I am not sure if support for MathML is extensive. Ideally I would also like to avoid having to rewrite an editor and would rather just pick one off the shelf. Would like to know if any of you have dealt with a similar situation and what solution you adopted/built. http://www.dessci.com/en/ has the software to do exactly what you want. Yang I was looking for

jQuery Cleditor get textarea value on keyup

爷,独闯天下 提交于 2019-12-03 06:18:14
I'm using Cleditor http://premiumsoftware.net/cleditor/docs/GettingStarted.html . I want to get the value on keyup and insert the text into another div. cleditor comes with change() event that i'm currently using in the jsfiddle example below, but thats not the same as keyup. I want the div to be updated as i'm typing in. I tried keyup but it doesn't work. Here's what i have now $("#input").cleditor().change(function(){ var v = $('#input').val(); $('#x').html(v); }) Check jsfiddle http://jsfiddle.net/qm4G6/11/ dgilland It appears that cleditor hides the textarea and replaces it with an iframe

WYSIWYG vs WYSIWYM

烈酒焚心 提交于 2019-12-03 05:21:37
问题 Which one is better and ideal in a web based application? Edit: Actually I am developing a community site. So the level of users may vary. Heard about XSS security issues with WYSIWYG editors. Also I am not familiar with WYSIWYM editors and its features. As far as I know the features in WYSIWYM editor is less compared to the other one. I figured one named as "WMD: The Wysiwym Markdown Editor". Its quite easy to use. So security and ease of usability should be there. In such a situation which

Is there any good IDE or WYSIWYG editor for graphviz? [closed]

£可爱£侵袭症+ 提交于 2019-12-03 04:45:47
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Actually I had downloaded an GUI for graphviz (dont remember the site), which said that they had won an Apple Design Award. But that tool really only displays an *.dot file I created. That's it. It's just called "Graphviz"... I guess that there are better tools around for using the Graphviz technology. I tried

How do online rich text editors work?

末鹿安然 提交于 2019-12-03 02:34:15
I was wondering how online rich text editors maintain the formatting when you paste text from a webpage or document. A standard textarea box only takes text while these WYSIWYG editors seem to use a DIV. How does it work? Online rich text editors use contentEditable or designMode to take advantage of the browser's native support for HTML editing. When you paste into a contentEditable or designMode element, the browser puts HTML directely into the element. Try it yourself by pasting into Midas Demo and then using Firebug's inspect element to look at the HTML you pasted. JavaScript applications

Prevent CKEditor from formatting code in source mode

梦想的初衷 提交于 2019-12-03 01:30:18
How can you prevent any automatic formatting when in CKEditor when viewing in source mode? I like to edit HTML source code directly instead of using the WYSIWYG interface, but whenever I write new lines, or layout tags how I would indent them, it all gets formatted when I switch to WYSIWYG mode and then back to source mode again. I stumbled upon a CKEditor dev ticket, Preserve formatting of ProtectedSource elements , that alluded to a setting which may have existed once upon a time which would be exactly what I'm after. I just want to know how I can completely turn off all automatic formatting

Rich Text Editor for AngularJS [closed]

不想你离开。 提交于 2019-12-03 00:53:37
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I use TextAngular which sucks to the core! Anybody using it would know. My users complain every single day :( I'm looking at alternatives and found some such as Froala ($199) & CKEditor but they require JQuery. Is there any "good" editor for AngularJS without JQuery that works? I have been searching but couldn't

Wysiwyg editor for angular4 [closed]

这一生的挚爱 提交于 2019-12-03 00:40:35
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . Does someone knows a good free wysiwyg editor compatible with angular 4 ? Froala seems to be good but unfortunately it's not free. Maybe using angular 4 was not a good idea because it's hard to find a lot of basic things ... Thank you 回答1: Since I had the same problem, I'm sharing the results of my research here:

Which WYSIWYG editor is best for a content management site?

自古美人都是妖i 提交于 2019-12-03 00:22:59
The editor I require, needs to be easy to use. Even for people with absolutely no HTML knowledge The projects I have tried are: TinyMCE ckeditor.com What I'm looking for is: Editor like TinyMCE editor with a live view like in stackoverflow site. A way to insert pictures, and arrange them in the article. EDIT: THe best solution that I think about it right now is to use: TinyMCE for WYSIWYG editor. Write custom code that will show it live in real article format. Write Ajax code that will upload the pictures to the site and then the editor can arrange them in the article, based on their ID/name.