>>
A simple search/replace regular expression is used to get rid of the C<< >> immediately
preceding or following the aforementioned tags. It may not work in all cases, please file a detailed
bug report if required.
=head1 OPTIONS
{
'formatter' => {
'multimarkdown' => {
'use_cache' => 1,
},
},
}
These are the default options set by this backend. They may be overridden by user configuration.
The I option (defaults to C<1>) may be used to disable the caching for this formatter
backend - if required - by setting it to a false value.
Apart from that, the I hashref may contain any options supported by
L. For example:
{
'formatter' => {
'multimarkdown' => {
'empty_element_suffix' => '>',
'tab_width' => 2,
'use_wikilinks' => 1,
},
},
}
The I hashref will be passed to L
(of the L module) as specified in the configuration, with the I key
deleted if it was included. If I is C, an empty hashref will be
used, but you should only set it to C if you know what you are doing.
=head1 CACHING
Results of this backend may be cached by the L. The
formatting only depends on the L, for effective caching the same options should be
used for all pages. Note that even if L's behaviour does not change for some
options (for example, when including default values in the options hashref), different options will
cause separate cached values, so don't do this. Keeping this in mind, it is save to include this
formatter early in the formatting chain as far as the caching is concerned.
Caching may be disabled for this backend (see L), it may also be disabled globally
(see L).
=head1 CLASS AND INSTANCE METHODS
See L.
=head1 SEE ALSO
L, L, L,
L
=head1 VERSION
This is version C<2014052501>.
=head1 AUTHOR
Stefan Goebel - newcomen {at} subtype {dot} de
=head1 COPYRIGHT AND LICENSE
Copyright 2013-2014 Stefan Goebel.
This file is part of Newcomen.
Newcomen is free software: you can redistribute it and/or modify it under the terms of the
L as published by the
L, either version 3 of the license, or (at your
option) any later version.
Newcomen is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
L for more details.
You should have received a copy of the
L along with Newcomen. If not, see
>.
=cut
####################################################################################################
# :indentSize=3:tabSize=3:noTabs=true:mode=perl:maxLineLen=100: