Re: Clojure Code Highlighting in Presentations

2011-04-05 Thread Tom Hicks
You mentioned you were on the Mac, so you can reduce your "round- about" using the pbcopy tool on the command line, as follows: % pygmentize -f rtf swing-ex.clj | pbcopy -Prefer rtf (Now, inside Keynote, just paste). pbcopy and pbpaste are very useful tools to become familiar with. cheers,

Re: Clojure Code Highlighting in Presentations

2011-04-04 Thread Heinz N. Gies
Thanks a lot people :) I see there is no best but a ton of possibilities! Your help is very much appreciated Regards, Heinz smime.p7s Description: S/MIME cryptographic signature

Re: Clojure Code Highlighting in Presentations

2011-04-04 Thread semperos
On my Mac, I use pygmentize on the command-line to generate a syntax-colored HTML file from a Clojure source file. Then I open the HTML file in Safari and copy-and-paste the code into Keynote. The Mac clipboard keeps the formatting between those two programs. A bit round-a

Re: Clojure Code Highlighting in Presentations

2011-04-04 Thread jweiss
I use emacs, and there's the htmlize feature which will output highlighted code in HTML, looking the same as it does in emacs. It not only preserves highlighting in clojure code or other languages, but in *any* emacs buffer. http://fly.srk.fer.hr/~hniksic/emacs/htmlize.el.cgi On Apr 3, 8:15 pm,

Re: Clojure Code Highlighting in Presentations

2011-04-04 Thread Jose Figueroa Martinez
Hello, I use my own web code highlighter based on vim7. It output html code which can be used with lot of css color styles. Try it, maybe it can help you :-) http://buhoz.net/codevim/ Saludos. José Figueroa Martínez. On 3 abr, 17:15, "Heinz N. Gies" wrote: > Hi everyone, > not a clojure techn

Re: Clojure Code Highlighting in Presentations

2011-04-03 Thread Miki
Greetings, not a clojure technical question but it has to do with the entire topic :). > I know there have been some presentations about clojure already and would > like to ask for some best practice experience regarding embedding Clojure > code in a presentation. Any advice? What tools did you

Re: Clojure Code Highlighting in Presentations

2011-04-03 Thread Meikel Brandmeyer
Hi, Am 03.04.2011 um 18:15 schrieb Heinz N. Gies: > not a clojure technical question but it has to do with the entire topic :). I > know there have been some presentations about clojure already and would like > to ask for some best practice experience regarding embedding Clojure code in > a pr

Re: Clojure Code Highlighting in Presentations

2011-04-03 Thread Shantanu Kumar
On Apr 3, 9:15 pm, "Heinz N. Gies" wrote: > Hi everyone, > not a clojure technical question but it has to do with the entire topic :). I > know there have been some presentations about clojure already and would like > to ask for some best practice experience regarding embedding Clojure code in

Re: Clojure Code Highlighting in Presentations

2011-04-03 Thread Mike Meyer
On Sun, 3 Apr 2011 18:15:43 +0200 "Heinz N. Gies" wrote: > Hi everyone, > not a clojure technical question but it has to do with the entire topic :). I > know there have been some presentations about clojure already and would like > to ask for some best practice experience regarding embedding C

Clojure Code Highlighting in Presentations

2011-04-03 Thread Heinz N. Gies
Hi everyone, not a clojure technical question but it has to do with the entire topic :). I know there have been some presentations about clojure already and would like to ask for some best practice experience regarding embedding Clojure code in a presentation. Any advice? What tools did you peop