wysiwyg

What's the best HTML WYSISYG editor available to web developers and why? [closed]

霸气de小男生 提交于 2019-11-28 23:32:34
There are many different flavored HTML WYSIWYG editors from javascript to ASP.Net web controls, but all too often the features are the same. Does anyone have a favorite HTML editor they like to use in projects? Why? I'm partial to TinyMCE WYSIWYG editor due to the following reasons: Javascript - so it is broadly usable regardless of the platform I'm working in. Easy to use - just a couple lines of code and a textarea and the control is up and running. Easily themed - so I can quickly make it look like the site in which it is being used Most importantly - easily customized to show/hide

What's the best open source wiki platform? [closed]

柔情痞子 提交于 2019-11-28 19:04:23
问题 I've been tasked with setting up a wiki for our developers to share project information (Server IPs, Interface Documentation, Architecture Diagrams, etc). My manager has suggested Deki and I've also heard of MediaWiki and Twiki. One project here uses Trac but we don't need it's SVN capabilities and we'd like to have a WYSIWYG editor if possible. We also want to host this wiki locally. I couldn't find many web resources comparing the various wiki platforms and previous stack overflow questions

Are there any JavaScript live syntax highlighters? [closed]

南笙酒味 提交于 2019-11-28 18:02:41
I've found syntax highlighters that highlight pre-existing code, but I'd like to do it as you type with a WYSIWYG-style editor. I don't need auto-completed functions, just the highlighting. As a follow-up question, what is the WYSIWYG editor that stackoverflow uses? Edit: Thanks to the answer below, I found two that look like they might suit my needs: EditArea and CodePress EDIT: See this question also: https://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript Here is a really interesting article about how to write one: (Even better, he gives the full

What's the best WYSIWYG editor currently available? (jQuery suppport/integration is a plus.) [closed]

て烟熏妆下的殇ゞ 提交于 2019-11-28 17:12:42
问题 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 5 years ago . I'm working on a project that needs a WYSIWYG editor, but I haven't had to integrate one in a while, so I'm not familiar with the latest and greatest ones. I've used both tinyMCE and nicEdit in the past and I'd prefer not to use tinyMCE for this project because of its large overhead. I don't need it to be overly

Integrated Markdown WYSIWYG text editor

时光毁灭记忆、已成空白 提交于 2019-11-28 15:10:37
In looking for a straightforward WYSIWYG editor for Markdown code, I am not finding a comparible UI to that of CkEditor, TinyMCE, ect. Specifically, the Markdown "WYSIWYG" editors that are often recommended (such as posts like this ) are not pure WYSIWYG editors in the sense that users either still write raw Markdown ( MarkItUp ) or go to the other extreme of having in-line editing without standard controls ( Hallo ). I need something in-between. I'm looking for a Markdown editor that looks and functions like a stripped down CkEditor text box, and that accepts and outputs Markdown. There

How to input text into tinceMCE editior using selenium/webdriver

放肆的年华 提交于 2019-11-28 13:10:53
I am trying to automatically insert some text using Selenium/Webdriver into a text box created using tinymce The text box is not a plain vanilla textbox so following is not working: System.out.println("Finding text input element"); WebElement element = inputWebDriver.findElement(By.xpath("//html/body/div/form/div/div/div[2]")); //not working //WebElement element = inputWebDriver.findElement(By.tagName("form")); // not working //WebElement element = inputWebDriver.findElement(By.id("tinymce")); // not working System.out.println("Entering something in text input"); element.sendKeys("Test text");

using wysiwyg Editor text with angular2

风格不统一 提交于 2019-11-28 08:44:17
I'm trying to use wysiwyg in my project angular2 when I add my code in index.html page (on the root page, it works) but when I try to use it in a child view html it doesn't get the css or (and) javascript code to get my wysiwyg correctly <!doctype> <html> <head> <base href="/"> <title>Arkloud Adservio</title> <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0"/> <!-- Load libraries --> <!-- IE required polyfills, in this exact order --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script> <script

Removing unwanted newline characters when adding <p> in CKEditor

放肆的年华 提交于 2019-11-28 05:05:59
When loading content with a set of paragraphs in CKEditor, it replaces my <p> tags with <p> That means the editor converts this: <p>paragraph 1</p> <p>paragraph 2</p> <p>paragraph 3</p> into what ends up like this: <p> paragraph 1</p> <p> paragraph 2</p> <p> paragraph 3</p> How do I fix it so that CKEditor doesn't add the extra newline characters when it sees the paragraph tags? Paolo Add this line to the ckeditor.js configuration file: n.setRules('p',{indent:false,breakAfterOpen:false}); More about the formatting of the HTML Writer can be found in Developers Guide: Output Formatting at

WYSIWYG HTML Editor Component for Delphi [closed]

为君一笑 提交于 2019-11-28 04:33:04
I need to send Email from my Delphi application. What I need is a WYSIWYG editor that I can use in the application to create the body of the email in HTML. Any ideas? Thanks, Pieter. Nick Brooks We've used TRichView just recently to do HTML email functionality and found it quite adequate. We did evaluate WpTools and it does do exactly what we wanted however for our needs it was just too expensive especially when we always try and purchase site licences. One thing we did find with WpTools is that it did implement a visual component or set of visual components that you could drop onto a form

javascript Rich Text Editors

江枫思渺然 提交于 2019-11-28 03:16:10
There are several (very good) rich text web editors written in Javascript (eg FCKeditor, YUI Texteditor and many many others). However I couldn't find any tutorial on how to build such a component. Something that would explain both high-level considerations (architecture) and/or more details in low-level "critical" points (ie why do most of the editors out there use iFrame, how do you handle keyboard input like Ctrl-B, Ctrl-C when the text is selected and when it is not etc) My main motivation is curiosity; if I had to develop such an editor today I wouldn't know where to start from. Does