Ideas on implementing Stack Overflow-style comments - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T21:13:58Z http://stackoverflow.com/feeds/question/395286 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/395286/ideas-on-implementing-stack-overflow-style-comments 3 Ideas on implementing Stack Overflow-style comments Willie Wheeler 2008-12-27T18:57:50Z 2009-07-04T13:19:16Z <p>I like the Stack Overflow comment UI a great deal and I'm looking into implementing the same thing on my own website. I looked at the code and it looks like the main tool here is <a href="http://wmd-editor.com/" rel="nofollow">WMD</a>, with the JQuery <a href="http://plugins.jquery.com/project/TextAreaResizer" rel="nofollow">TextArea Resizer</a> playing a supporting role.</p> <p>WMD converts Markdown into HTML on the client side. That's pretty nice because it helps out with previewing but I run into a challenge when sending that to the server. If there's a validation error (say the user entered an invalid e-mail address on some other part of the comment form, or he didn't enter his name maybe), then the server responds by redisplaying the form with an error message and the form fields prepopulated. Only now the comment text is HTML, not Markdown, because the server never even saw the Markdown. But I would like it to be Markdown since that's what the user was entering.</p> <p>Any ideas here?</p> <p>I've considered various ideas:</p> <ul> <li>Do a server-side <a href="http://stackoverflow.com/questions/59557/html-to-markdown-with-java">HTML-to-Markdown transformation</a>. Not that excited about this idea. Seems hokey to transform from Markdown to HTML back to Markdown again, and as a user I always find it irritating when the software reformats my text/code.</li> <li>Client-side validation (to augment the server-side validation, which I would of course retain). Seems like a reasonable direction though currently I'm using reCAPTCHA on my comment forms, which means that I need to post at least the reCAPTCHA part to a server.</li> <li>Lose WMD and use <a href="http://code.google.com/p/markdownj/" rel="nofollow">MarkdownJ</a> to transform the Markdown to HTML on the server. I'd need to look for some other mechanism for accomplishing the preview function, which I want to keep.</li> </ul> <p>Ideally there'd be some way to get at the Markdown version of the text and submit that to the server in addition to the HTML, but I'm not enough of a JavaScript guy to know whether that's a real possibility.</p> <p>Any suggestions appreciated.</p> http://stackoverflow.com/questions/395286/ideas-on-implementing-stack-overflow-style-comments/395315#395315 3 Answer by Parand for Ideas on implementing Stack Overflow-style comments Parand 2008-12-27T19:20:41Z 2008-12-27T19:20:41Z <p>I've only looked at WMD at a cursory level, but submitting the textarea to the server seems pretty straight forward - in fact, I hardly see how you could avoid it if the textarea is part of your form. As I understand it, your textarea contains markup, and WMD converts it to HTML for display in another part of your page. Simply include the textarea in the form that gets submitted and you should see it on the server side.</p> http://stackoverflow.com/questions/395286/ideas-on-implementing-stack-overflow-style-comments/395387#395387 3 Answer by Chris Jester-Young for Ideas on implementing Stack Overflow-style comments Chris Jester-Young 2008-12-27T20:35:56Z 2008-12-27T20:35:56Z <p>See this question: <a href="http://stackoverflow.com/questions/235224/convert-html-back-to-markdown-for-editing-in-wmd">http://stackoverflow.com/questions/235224/convert-html-back-to-markdown-for-editing-in-wmd</a> (yay for the "Related" box on the right-hand nav!).</p> http://stackoverflow.com/questions/395286/ideas-on-implementing-stack-overflow-style-comments/395964#395964 4 Answer by Jeduan Cornejo for Ideas on implementing Stack Overflow-style comments Jeduan Cornejo 2008-12-28T08:03:58Z 2008-12-28T08:03:58Z <p>I would send the data as markdown and then let the server convert it to html when the validations have passed. WMD has an option to specify the format of data it will send to the server. Just add </p> <pre><code>wmd_options = { //Markdown or HTML output: "Markdown" }; </code></pre> <p>Before the call to wmd</p> http://stackoverflow.com/questions/395286/ideas-on-implementing-stack-overflow-style-comments/1082195#1082195 0 Answer by Don Gillis for Ideas on implementing Stack Overflow-style comments Don Gillis 2009-07-04T13:19:16Z 2009-07-04T13:19:16Z <p>answer answer</p>