Vroom takes a single file, which in the C'Dent/SeaPig case is:

http://github.com/ingydotnet/cdent-seapig2010-talk/blob/master/slides.vroom

and splits it into a bunch of smaller, slightly reformatted files called
001, 002 etc.

`vroom vroom` just runs `vim 0*` and a local .vimrc maps <SPACE> to `:next`.

> vroom -help
    Usage: vroom [options]

    -new        - Create a sample 'slides.vroom' file
    -vroom      - Start slideshow
    -compile    - Generate slides
    -html       - Publish slides as HTML

    -skip=#     - Skip # of slides
    -input=name - Specify an input file name

    -clean      - Delete generated files
    -help       - Get help!

If you want all the slides in a wiki page, you could do something like:

{{{
... include slides.vroom ...
}}}

Or even better, run `vroom -compile` and then

cat 0* | python -c 'import sys,re; print re.sub(r"\n{3,}", "\n\n" +
str.center("----", 70) + "\n\n", sys.stdin.read())'

It will produce this (which you can copy):

http://github.com/ingydotnet/cdent-seapig2010-talk/blob/master/slides.formatted

I hope this is helpful.

Cheers, Ingy

On Sat, Apr 10, 2010 at 8:47 AM, David Dyck <[email protected]> wrote:

> Thanks for sharing the presentation - both in person, and on-line.
>
> I remembered your slide that said "Common DEnomiNaTor",
> but it's nice to know the rest of the story.
>
> I liked you use of vroom http://github.com/ingydotnet/vroom-pm
> to create a powerful text based presentation.
>   ( Does vroom have an option to join the slides and create a wiki page
> (for http://www.seapig.org/ )
>
> On Sat, Apr 10, 2010 at 12:04 AM, Ingy dot Net <[email protected]> wrote:
>
>> Common DEnomiNaTor
>
>
>

Reply via email to