search for: rubychan

Displaying 4 results from an estimated 4 matches for "rubychan".

Did you mean: rubycat
2006 Jun 08
0
Is possible to mantain a co0l blog without broke XHTML?
.... But you use HTML inside so you''ll be sure that every cms could import it. What about an hybrid? You write a simple HTML code via WYSIWYG editor and then re-parse it again with Rails-aCMS-orAnythingElse. Probably the best solution for the code highlightning is Coderay (http://coderay.rubychan.de/); you write a code like: <code lang="ruby"> Class Test end </code> and you get: <code lang="ruby"> <span class="keyword">Class</span> Test <span class="keyword">end</span> </code> The same concept could...
2007 Jan 05
0
webgen 0.4.0 released
...rake install The above listed methods also work when installing on Windows. [1]: http://cmdparse.rubyforge.org [2]: http://redcloth.rubyforge.org [3]: http://www.deveiate.org [4]: http://rmagick.rubyforge.org [5]: http://builder.rubyforge.org [6]: http://exifr.rubyforge.org [7]: http://coderay.rubychan.de
2006 Jul 06
4
Ruby code colorizer
Hi, Does anyone know of a html code colorizer for ruby source code? Ideally a typo plugin :) Regards, Jason
2006 Dec 23
0
addition of <dl> lists to redcloth
hello! I wish Textile had a syntax for dl-lists. they are very useful in my opinion, mostly as a substitute for deeply nested headings and two-column tables. Wikicode has a syntax for it: ; Foo : definition ; Bar : definition creating: <dl> <dt>Foo</dt> <dd>definition</dd> <dt>Bar</dt> <dd>definition</dd> </dl>