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

NAME

XML::Grammar::Fiction::ToDocBook - module that converts the Fiction-XML to DocBook 5.

VERSION

Version 0.9.2

new()

Accepts no arguments so far. May take some time as the grammar is compiled at that point.

meta()

Internal - (to settle pod-coverage.).

translate_to_docbook

  • my $xhtml_source = $converter->translate_to_docbook({source => {file => $filename}, output => "string" })

  • my $xhtml_source = $converter->translate_to_docbook({source => {string_ref => \$buffer}, output => "string" })

  • my $xhtml_dom = $converter->translate_to_docbook({source => {file => $filename}, output => "dom" })

  • my $xhtml_dom = $converter->translate_to_docbook({source => {dom => $libxml_dom}, output => "dom" })

Does the actual conversion. The 'source' argument points to a hash-ref with keys and values for the source. If 'file' is specified there it points to the filename to translate (currently the only available source). If 'string_ref' is specified it points to a reference to a string, with the contents of the source XML. If 'dom' is specified then it points to an XML DOM as parsed or constructed by XML::LibXML.

The 'output' key specifies the return value. A value of 'string' returns the XML as a string, and a value of 'dom' returns the XML as an XML::LibXML DOM object.

AUTHOR

Shlomi Fish, http://www.shlomifish.org/.

BUGS

Please report any bugs or feature requests to bug-xml-grammar-fiction at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=XML-Grammar-Fiction. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2007 Shlomi Fish, all rights reserved.

This program is released under the following license: MIT X11.