Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
520 views

How do I create a RedCloth live preview using jQuery?

I've had problems with many of the WYSIWYG gems/plugins for Rails, so I'm building one myself using the RedCloth gem. I want users to see a live preview of their HTML-formatted text as they're filling ...
1
vote
2answers
41 views

Live preview with LESS or SCSS?

I am trying to figure out if there is a way to use LESS or SCSS without having to save the document or refresh the browser. At the moment I use CSS Edit which is great for live previews but I cant ...
1
vote
1answer
61 views

How to allow two-way editing of textarea and live preview

I am trying to set up a simple "table of contents" previewer that consists of a textarea where you paste the HTML of an article, and a 'live preview' container showing just the headers. In addition ...
1
vote
2answers
334 views

Live preview of formatted HTML form input with Rails

I want a feature of previewing some text with HTML tags and then storing the text in database. I know it is not a good idea to allow HTML in database, for XSS security reasons. What are the ways to ...
1
vote
4answers
167 views

sample editor - same as stackOverflow

I want to create an editor and store formatted text in database. I want just a sample editor do functions like StackOverFlow editor: _sfdfdgdfgfg_ : for underlined text /sfdfdgdfgfg/ : for bolded ...
0
votes
1answer
245 views

dreamweaver live view alternative

Are there any IDE's that have live html rendering which updates on save? I don't like Dreamweaver's live view because it reloads the entire page/css/js making it slow... I want something more similar ...
0
votes
2answers
199 views

What are the various code-with-instant-preview (and auto-save) services out there?

What are the various code-with-instant-preview (and auto-save) services out there? http://jsbin.com/ http://jsfiddle.net/
0
votes
2answers
88 views

Is there a svn or git solution that enables live preview

I would like to know if there is a solution (open source project or webservice) available that offers a svn or git repository together with an apache server and database. I am searching for such a ...
0
votes
1answer
2k views

How can I enable live preview for FCKeditor in an ASP.Net site?

Over in this question, Scott writes that it is possible to get the current HTML for what's written in the FCKeditor by using FCKeditorAPI.__Instances['instanceNameHere'].GetHTML(); Could someone ...