I'd like to use [Rack::Pygmentize][1] with middleman.
The usage instructions seem pretty clear...
* Just add `use Rack::Pygmentize` to your `config.ru`. See the
[example][2] in the `/examples` directory.
I have the prerequisites...
* [Pygments][3] is installed and the `pygmentize` executable is
available in my `PATH`.
My `config.ru`:
require 'rubygems'
require 'middleman'
use Rack::Pygmentize
run Middleman::Server
By the way, middleman is awesome! Love it.
Thanks,
Victor
[1]:https://github.com/injekt/rack-pygmentize
[2]:https://github.com/inject/rack-pygmentize/blob/master/examples/rack-pygmentize.rb
[3]:https://pygments.org
Victor