NAME
Org::To::Base - Base class for Org exporters
VERSION
version 0.05
SYNOPSIS
# Not to be used directly. Use one of its subclasses, like Org::To::HTML.
DESCRIPTION
This module is a base class for Org exporters. To create an exporter, subclass from this class (as well as add Org::To::Role role) and provide an implementation for the export_*() methods. Add extra attributes for export options as necessary (for example, Org::To::HTML adds html_title
, css_url
, and so on).
ATTRIBUTES
include_tags => ARRAYREF
Works like Org's 'org-export-select-tags' variable. If the whole document doesn't have any of these tags, then the whole document will be exported. Otherwise, trees that do not carry one of these tags will be excluded. If a selected tree is a subtree, the heading hierarchy above it will also be selected for export, but not the text below those headings.
exclude_tags => ARRAYREF
If the whole document doesn't have any of these tags, then the whole document will be exported. Otherwise, trees that do not carry one of these tags will be excluded. If a selected tree is a subtree, the heading hierarchy above it will also be selected for export, but not the text below those headings.
exclude_tags is evaluated after include_tags.
METHODS
$exp->export($doc) => STR
Export Org.
$exp->export_elements(@elems) => STR
Export Org element objects and with the children, recursively. Will call various export_*() methods according to element class. Should return a string which is the exported document.
AUTHOR
Steven Haryanto <stevenharyanto@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Steven Haryanto.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.