Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to create a text editor for my blog similar to the one used in stackoverflow 'Ask Question'.

Which programming language to use ? How would it affect the load time of my site ? And how do i handle the text received ? Thanks in advance.

share|improve this question

3 Answers

It seems like you'd want to use an existing Javascript widget like TinyMCE: http://tinymce.moxiecode.com/

share|improve this answer

I use ckeditor for general HTML but it isn't designed for entering code. The stackoverflow one is open source though so look in the site source code for the Javascript.

share|improve this answer

You can use a Markdown (http://daringfireball.net/projects/markdown/).

"Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML)."

You'll find a parser for almost any programming language.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.