wysiwyg

Are there any WYSIWYG HTML editors that don't mess up the code?

I've tried various editors, both desktop applications and web-based RTEs, but have not found anything that works very well. All too often, they mess up code, adding in "tag soup". Even the ones that claim to only produce valid code often produce a total mess of span tags and style attributes. Here are some of the features I'm looking fo...

Smart Quotes Using JQuery

Using jQuery, how can I enable the live insertion of smart quotes while editing text boxes? ...

WYSIWYG textarea component security

Really my question has more to do with the server-side scrubbing of html that's accepted via the WYSIWYG form component. Right now I'm leaning toward using htmlpurifier.org's library. I'm using php strip_tags() function elsewhere. Anyone have an advice/preferences/recommendations? ...

What kind of Markup should i use for the Notes in my WebApp?

hi, i am building a webapp that will have notes fields all over the place, but i dont know what kind of markup i should use. these are my requirements User must be able to change the text style (bold, italic, underlined) User must be able to create bullet lists User must be able to create numbered lists User must be able to change th...

Using MarkDown on dynamic websites?

Do any WYSIWYG editors exist that work natively in Markdown? (any Platform/Language) ...So consumers don't have to see the code behind, just work in an MS-Word like interface. An assisted MarkDown editor where you're viewing and editing the Markdown-source (like the one I'm writing this question with) would also be okay. ...

How do online text editors work?

I am trying to develop an Online editor (like FCKEditor/etc) but I have no idea how they work. I know that the WYSIWYG ones have Javascript and IFrames, but how do they actually work? I'm especially curious about having a real-time preview of what's being typed into the editor. ...

What WYSIWYG editor does Stackoverflow use?

This is a great editor. Did you guys build it? Duplicate. ...

styleWithCSS for IE

I'm building a custom RTE that converts user input to a homebrewn markup, now idiot that I am I did this using an iframe with designMode = "On" and got it to work in firefox using styleWithCSS = false so that I could easily convert the <b> (yes... b :( ) into my markup which would then output the proper code instead of me having to read ...

WYSIWYG editor vs Hand Code

What are the pros and cons of using a WYSIWYG editor for web page development vs hand coding? With the exception of just not knowing how to create something by hand coding is there any reasons to use WYSIWYG? ...

Problem embedding TinyMCE in Django, any help?

I’m working on a web application with Django, and I’m using the Flatpages app. Now, I’m trying to embed the TinyMCE WYSIWYG editor in Flatpages. I’m following the steps mentioned in the Apress book: Practical Django Projects. And I’ve done everything right, but the TinyMCE app wouldn’t show up in the browser. When I asked the Django IRC...

What's the best open source wiki platform?

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 p...

WYSIWYG editing of HTML documents exported from Microsoft Excel

Do WYSIWYG editors generally have problems editing HTML documents that has been exported by Microsoft programs like Excel? I'm currently using TinyMCE, and I'm having trouble editing an html document that was saved by Excel. The html file has a lot of inline "mso" css styles, which I'm guessing are microsoft specific. TinyMCE can't re...

wyswyg html form printing

I am starting this web app project (asp.net mvc) It's a document-based system, such that nearly each web page is a model of an official printed form (and users sometimes should be able to produce prints). I am wondering how much cost and time saving it will be if the form could be a wyswyg page that will serve both electronic and paper...

What's the best WYSIWYG editor when using the ASP.NET MVC Framework?

Hi, Was wondering what the best WYSIWYG editor that I can embed in a web-site based on the ASP.NET MVC Framework? Ideally it should be Xhtml compliant and allow users to embed images etc. The only one I've used before is the FCKEditor, how well does this work with the MVC - has anyone tried...? My main requirements are: Xhtml compli...

jWysiwyg extend

I'm trying to find a way to extend jWysiwyg. I need a function to insert this code inside the editor: <a rel="shadowbox" href="images/photo_big.jpg" class="option" > <img src="images/photo_small.jpg" id="rightcontentImg" alt="photo" /> </a> So not only the image, but also a link. I know i can use something like this to insert image...

Drupal: How to enable WYSIWYG editor on fields added using CCK?

I added couple of Text fields on a content type in Drupal - however, only the in-built "body" fields is WYSIWYG editor enabled. I am using FCKEditor as the WYSIWYG editor (installed under the "wysiwyg" add-on. How can I get WYSIWYG editor enabled on custom added field? ...

How to control allowed HTML tags in WMD Editor?

I am trying to some-how set the valid HTML tags and attributes users would be able to use in WMD Editor in my site. For example, I want to forbid the user to directly set the font size, color, typeface and so on, which is trivial to do with the default settings typing something like: <span style="font-size: 45px; color:#FF0000">Some int...

Objective reasons for using a wiki tool over Sharepoint?

Duplicate http://stackoverflow.com/questions/587481/developer-documentation-sharepoint-document-management-vs-screwturn-wiki I have been tasked with picking a wiki tool for a development organization, comprised of several different development teams. Sharepoint is installed and upper management would prefer this to be used, but i...

WYSIWYG editor for Windows forms

Does anyone know of a good WYSIWYG editor for Windows forms. If I use a rich textbox, I need to handle pasting events, bold buttons, fonts etc, which is a nightmare. I’m currently using the HTML control, suggested by many sites, but I have a large form, with many tabs. Since I have to load up to 8 HTML controls, loading the form takes t...

Rewrite urls from user submitted HTML

Hi, I use one WYSIWYG editor in a small cms. It allows users to upload files, images, etc. If I add image named dog.jpg, in source I'll get: <img src="/myweb/userfiles/images/dog.jpg" /> I can save this to a database and use it later on any page, until I move my site to a live domain. myweb is virtual directory in IIS. "/" points to ...