Why not adopt me?
NAME
Pod::WordML::AddisonWesley - Turn Pod into Microsoft Word's WordML using Addison Wesley's styles
SYNOPSIS
use Pod::WordML::AddisonWesley;
DESCRIPTION
***THIS IS ALPHA SOFTWARE. MAJOR PARTS WILL CHANGE***
I wrote just enough of this module to get my job done, and I skipped every part of the specification I didn't need while still making it flexible enough to handle stuff later.
The style information
I don't handle all of the complexities of styles, defining styles, and all that other stuff. There are methods to return style names, and you can override those in a subclass.
- document_header
-
This is the start of the document that defines all of the styles. You'll need to override this. You can take this directly from
- chapter_number_style
- head1_style, head2_style, head3_style, head4_style
-
The paragraph styles to use with each heading level. By default these are
Head1Style
, and so on. - normal_para_style
-
The paragraph style for normal Pod paragraphs. You don't have to use this for all normal paragraphs, but you'll have to override and extend more things to get everything just how you like. You'll need to override
start_Para
to get more variety. - bullet_para_style
-
Like
bullet_para_style
, but for paragraphs under=item
. - inline_code_style
-
The character style that goes with
C<>
. - inline_url_style
-
The character style that goes with
U<>
. - inline_italic_style
-
The character style that goes with
I<>
. - inline_bold_style
-
The character style that goes with
B<>
.
TO DO
SEE ALSO
SOURCE AVAILABILITY
This source is in Github:
http://github.com/briandfoy/Pod-WordML
If, for some reason, I disappear from the world, one of the other members of the project can shepherd this module appropriately.
AUTHOR
brian d foy, <bdfoy@cpan.org>
COPYRIGHT AND LICENSE
Copyright (c) 2009-2014, brian d foy, All Rights Reserved.
You may redistribute this under the same terms as Perl itself.