The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Text::Slidez - format slideshows into XHTML

SYNOPSIS

See slidez for the command-line frontend.

  use Text::Slidez;

  my $slidez = Text::Slidez->new;
  $slidez->load('my_slides.hbml');
  foreach my $slide ($slidez->slides) {
    ...
  }

load

  $slidez->load('my_slides.hbml');

dump

Dump a marked-up version of the raw data.

  warn $slidez->dump;

format_slide

Format a single slide for output.

  my $xhtml = $slidez->format_slide($slide, %opts);

as_single_page

  $slidez->as_single_page;

do_code

  $slidez->do_code($tag, $atts, $string);

Shebangml Callbacks

These are really part of the parser class and not the API.

put_tag

  $slidez->put_tag($tag, $atts, $string);

put_tag_start

  $slidez->put_tag_start($tag, $atts);

put_tag_end

  $slidez->put_tag_end($tag);

put_text

  $slidez->put_text($text);

_part_slide

  my @parts = $self->_part_slide($slide);

_calc_width

  my $n = $self->_calc_width($text);

_handle_parts

  $self->_handle_parts($ctx, \@parts, %opts);

_mk_script

  $self->_mk_script(%opts);

AUTHOR

Eric Wilhelm @ <ewilhelm at cpan dot org>

http://scratchcomputing.com/

BUGS

If you found this module on CPAN, please report any bugs or feature requests through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

If you pulled this development version from my /svn/, please contact me directly.

COPYRIGHT

Copyright (C) 2009 Eric L. Wilhelm, All Rights Reserved.

NO WARRANTY

Absolutely, positively NO WARRANTY, neither express or implied, is offered with this software. You use this software at your own risk. In case of loss, no person or entity owes you anything whatsoever. You have been warned.

LICENSE

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.