1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
=head1 NAME
CommonMark::Node - Node of the CommonMark parse tree
=head1 SYNOPSIS
my $html = $node->render(format => 'html');
my $header = $doc->first_child;
my $level = $header->get_header_level;
my $paragraph = $header->next;
my $link = CommonMark::Node->new(CommonMark::NODE_LINK);
$link->set_url('http://example.com/');
my $text = CommonMark::Node->new(CommonMark::NODE_TEXT);
$text->set_literal('link text');
$link->append_child($link_text);
$paragraph->append_child($link);
$doc->render_html;
=head1 DESCRIPTION
C<CommonMark::Node> represents a node of the parse tree.
=head2 new
my $node = CommonMark::Node->new($type);
Creates a new node of type C<$type>. See L</"Node types"> for a list of
types. Note that the L<node creation functions|CommonMark/"Node creation">
provide a more powerful interface.
=head2 Rendering
my $result = $node->render(
format => $string,
sourcepos => $bool, # Optional
hardbreaks => $bool, # Optional
nobreaks => $bool, # Optional
unsafe => $bool, # Optional
width => $int, # Optional
);
Convenience function to render documents. Supported formats are C<'html'>,
C<'xml'>, C<'man'>, C<'commonmark'>, and C<'latex'>.
C<sourcepos>, C<hardbreaks>, C<nobreaks>, and C<unsafe> enable the respective
render options.
C<width> is passed to renderers that support it.
my $html = $node->render_html( [$options] )
my $xml = $node->render_xml( [$options] )
my $man = $node->render_man( [$options], [$width] )
my $md = $node->render_commonmark( [$options], [$width] )
my $latex = $node->render_latex( [$options], [$width] )
These methods render the contents of the node in the respective format.
C<$options> is a bit field created by ORing the following constants:
CommonMark::OPT_DEFAULT => 0
CommonMark::OPT_SOURCEPOS
CommonMark::OPT_HARDBREAKS
CommonMark::OPT_UNSAFE
CommonMark::OPT_NOBREAKS
Render options can be imported from L<CommonMark> with tag C<opt>.
use CommonMark qw(:opt);
C<$options> may be omitted and defaults to C<OPT_DEFAULT>.
C<SOURCEPOS> adds information about line numbers in the source file to the
XML and HTML formats.
C<HARDBREAKS> translates "softbreak" nodes (typically corresponding to
newlines in the input) to hard line breaks. This is only supported by some
renderers. The HTML renderer, for example, generates a C<E<lt>br /E<gt>>
instead of a newline character.
C<NOBREAKS> translates "softbreak" nodes to spaces. Requires libcmark
0.25 or higher.
C<UNSAFE> only affects the HTML renderer. It allows raw HTML blocks and
some dangerous links.
See the documentation of I<libcmark> for a more detailed explanation of the
render options.
C<$width> specifies the number of characters at which lines are broken.
A value of 0 disables line wrapping. The default is 0.
=head2 Accessors
# Integer values
my $int = $node->get_type;
my $int = $node->get_header_level;
my $int = $node->get_list_type;
my $int = $node->get_list_delim;
my $int = $node->get_list_start;
my $int = $node->get_list_tight;
my $int = $node->get_start_line;
my $int = $node->get_start_column;
my $int = $node->get_end_line;
my $int = $node->get_end_column;
$node->set_header_level($int);
$node->set_list_type($int);
$node->set_list_delim($int);
$node->set_list_start($int);
$node->set_list_tight($int);
# String values
my $string = $node->get_type_string;
my $string = $node->get_literal;
my $string = $node->get_title;
my $string = $node->get_url;
my $string = $node->get_fence_info;
my $string = $node->get_on_enter;
my $string = $node->get_on_exit;
$node->set_literal($string);
$node->set_title($string);
$node->set_url($string);
$node->set_fence_info($string);
$node->set_on_enter($string);
$node->set_on_exit($string);
Various accessors to get and set integer and string values of a node. Not
all values are supported by every type of node. Getters return C<0> or
C<undef> for unsupported values. Setters die on failure.
See L</"Constants"> for a list of constants used for node types, list
types, and list delimiters.
=head2 Tree traversal
my $iterator = $node->iterator;
Creates a new L<CommonMark::Iterator> to walk through the descendants of
the node.
my $next = $node->next;
my $prev = $node->previous;
my $parent = $node->parent;
my $child = $node->first_child;
my $child = $node->last_child;
These methods return the respective node in the tree structure.
=head2 Tree manipulation
$node->unlink;
$node->replace($other);
$node->insert_before($other);
$node->insert_after($other);
$node->prepend_child($other);
$node->append_child($other);
C<unlink> removes a node and all its descendants from the tree.
C<replace> replaces C<$node> with C<$other>, unlinking C<$node>.
C<insert_before> and C<insert_after> insert the C<$other> node before or
after C<$node>. C<append_child> and C<prepend_child> append or prepend
C<$other> to the children of C<$node>. C<$other> is unlinked before it is
moved to its new position.
These methods may die on failure, for example if the document structure
is violated.
=head2 Constants
=head3 Node types
CommonMark::NODE_NONE => 0
CommonMark::NODE_DOCUMENT
CommonMark::NODE_BLOCK_QUOTE
CommonMark::NODE_LIST
CommonMark::NODE_ITEM
CommonMark::NODE_CODE_BLOCK
CommonMark::NODE_HTML_BLOCK
CommonMark::NODE_CUSTOM_BLOCK
CommonMark::NODE_PARAGRAPH
CommonMark::NODE_HEADING
CommonMark::NODE_THEMATIC_BREAK
CommonMark::NODE_TEXT
CommonMark::NODE_SOFTBREAK
CommonMark::NODE_LINEBREAK
CommonMark::NODE_CODE
CommonMark::NODE_HTML_INLINE
CommonMark::NODE_CUSTOM_INLINE
CommonMark::NODE_EMPH
CommonMark::NODE_STRONG
CommonMark::NODE_LINK
CommonMark::NODE_IMAGE
Node types can be imported from L<CommonMark> with tag C<node>.
use CommonMark qw(:node);
=head3 List types
CommonMark::NO_LIST => 0
CommonMark::BULLET_LIST
CommonMark::ORDERED_LIST
List types can be imported from L<CommonMark> with tag C<list>.
use CommonMark qw(:list);
=head3 Delimiter types for ordered lists
CommonMark::NO_DELIM => 0
CommonMark::PERIOD_DELIM
CommonMark::PAREN_DELIM
Delimiter types can be imported from L<CommonMark> with tag C<delim>.
use CommonMark qw(:delim);
=head1 COPYRIGHT
This software is copyright (C) by Nick Wellnhofer.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|