up vote 0 down vote favorite
share [g+] share [fb]

I am writing a document for a Rails application that I wrote. Apart from a word document, I need it to be a web document as well. And since I do not have a lot of time, I was wondering if there is a CSS framework that will help me facilitating the process.

So is there a CSS framework that is specifically designed for documentation with Ruby syntax highlighting?

I am not even sure if syntax highlighting is possible only with CSS. Any recommendation will be appreciated!

link|improve this question

Syntax highlighting with just CSS is impossible. You need elements to hang off (e.g. <code class="ruby function">) – Quentin Aug 20 '09 at 15:36
feedback

1 Answer

up vote 2 down vote accepted

Checkout SHJS - SHJS is a JavaScript program which highlights source code passages in HTML documents. Documents using SHJS are highlighted on the client side by the web browser.

It's not a CSS solution, but if I'm understanding what you are trying to accomplish should give you similar results.

link|improve this answer
exactly what I was looking for. thanks Mike! – mr.flow3r Aug 20 '09 at 17:12
feedback

Your Answer

 
or
required, but never shown

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