Is there a good embeddable code widget for blogs - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T04:28:12Zhttp://stackoverflow.com/feeds/question/251297http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/251297/is-there-a-good-embeddable-code-widget-for-blogs1Is there a good embeddable code widget for blogsdanmayer2008-10-30T18:50:50Z2008-11-14T06:56:12Z
<p>My co-founder is currently asking on our blog for an embeddable code widget.</p>
<p><a href="http://devver.net/blog/2008/10/someone-please-build-an-awesome-embeddable-code-widget/" rel="nofollow">http://devver.net/blog/2008/10/someone-please-build-an-awesome-embeddable-code-widget/</a></p>
<p>Basically we want something like <a href="http://pastie.org/" rel="nofollow">http://pastie.org/</a> or <a href="http://codepad.org/" rel="nofollow">http://codepad.org/</a> but we really want to embed the code section in our blog. We know there are plugins for common blogs and server side solutions, but it would be great to be able to just embed a little javascript and have nicely formatted code anywhere...</p>
<p>Does something like this exist? Have we just missed it?</p>
http://stackoverflow.com/questions/251297/is-there-a-good-embeddable-code-widget-for-blogs/251321#2513215Answer by Jauco for Is there a good embeddable code widget for blogsJauco2008-10-30T18:57:49Z2008-10-30T18:57:49Z<p>I think you want a javascript syntax highlighter</p>
<ul>
<li><p><a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">http://code.google.com/p/syntaxhighlighter/</a></p></li>
<li><p><a href="http://shjs.sourceforge.net/" rel="nofollow">http://shjs.sourceforge.net/</a></p></li>
<li><p><a href="http://www.google.com/search?q=javascript+syntax+highlighter" rel="nofollow">http://www.google.com/search?q=javascript+syntax+highlighter</a></p></li>
</ul>
<p>Sometimes you just keep thinking in the wrong keywords ;-)</p>
http://stackoverflow.com/questions/251297/is-there-a-good-embeddable-code-widget-for-blogs/251373#2513730Answer by slothbear for Is there a good embeddable code widget for blogsslothbear2008-10-30T19:14:02Z2008-10-30T19:14:02Z<p>Check out <a href="http://coderay.rubychan.de/" rel="nofollow">CodeRay</a> and <a href="http://ultraviolet.rubyforge.org/" rel="nofollow">UltraViolet</a>. They're both quite good and easy to use.</p>
http://stackoverflow.com/questions/251297/is-there-a-good-embeddable-code-widget-for-blogs/251430#2514302Answer by Onorio Catenacci for Is there a good embeddable code widget for blogsOnorio Catenacci2008-10-30T19:30:28Z2008-10-30T19:30:28Z<p>I think some of the answers to <a href="http://stackoverflow.com/questions/81338/how-to-blog-code-at-wordpresscom">this question</a> might be helpful for your question. </p>
http://stackoverflow.com/questions/251297/is-there-a-good-embeddable-code-widget-for-blogs/270893#2708930Answer by danmayer for Is there a good embeddable code widget for blogsdanmayer2008-11-07T00:36:03Z2008-11-07T00:36:03Z<p>We had a user point out a WordPress plugin that uses Gist to do exactly what we were asking for...</p>
<p><a href="http://pomoti.com/gist-it-english" rel="nofollow">http://pomoti.com/gist-it-english</a></p>
<p>Even if you don't use the plug in it looks like a feature of Gist lets you embed the code anywhere you want on the web. <a href="http://gist.github.com" rel="nofollow">http://gist.github.com</a></p>
<p>Looks pretty sweet. Thanks goes to Dirceu Jr.</p>
http://stackoverflow.com/questions/251297/is-there-a-good-embeddable-code-widget-for-blogs/289385#2893850Answer by Eugene Lazutkin for Is there a good embeddable code widget for blogsEugene Lazutkin2008-11-14T06:50:16Z2008-11-14T06:56:12Z<p>I use a highlighter included in Dojo (adapted from <a href="http://softwaremaniacs.org/soft/highlight/" rel="nofollow">Ivan Sagalaev's highlight.js</a>). All you need to do is to include a few lines of code in the head of your web page (a script tag pointing to AOL or Google, a link to CSS hosted by AOL or Google, and a trivial script to request the highlight) and add <pre><code lang="javascript"> blocks with preformatted snippets — they will be found and highlighted automatically.</p>
<p>Of course, multiple languages are supported as well as automatic guessing the language of your snippet. If user turned off JavaScript, it will degrade gracefully.</p>
<p>Another good point of this solution: no need to host any files, no need to configure servers, no need to generate HTML dynamically, can be used with anything — even static file will be highlighted just fine.</p>
<p>You can see examples in official tests: <a href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/highlight/tests/test_highlight.html" rel="nofollow">test_highlight.html</a>, <a href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/highlight/tests/test_pygments.html" rel="nofollow">test_pygments.html</a>. This is the example of snippets on my web site: <a href="http://lazutkin.com/blog/2008/may/18/aop-aspect-javascript-dojo/" rel="nofollow">the article with several highlighted code snippets</a> — look in the head of this page to see how the highlighter can be included directly from AOL.</p>