123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- use vars qw(%result_texis %result_texts %result_trees %result_errors
- %result_indices %result_sectioning %result_nodes %result_menus
- %result_floats %result_converted %result_converted_errors
- %result_elements %result_directions_text);
- use utf8;
- $result_trees{'end_of_line'} = {
- 'contents' => [
- {
- 'contents' => [
- {
- 'parent' => {},
- 'text' => 'verb at end of line '
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
- ',
- 'type' => 'raw'
- },
- {
- 'parent' => {},
- 'text' => '
- ',
- 'type' => 'raw'
- },
- {
- 'parent' => {},
- 'text' => '@{ in verb at end of line @c comment
- ',
- 'type' => 'raw'
- },
- {
- 'parent' => {},
- 'text' => 'and now end',
- 'type' => 'raw'
- }
- ],
- 'parent' => {},
- 'type' => 'brace_command_arg'
- }
- ],
- 'cmdname' => 'verb',
- 'contents' => [],
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 1,
- 'macro' => ''
- },
- 'parent' => {},
- 'type' => ''
- },
- {
- 'parent' => {},
- 'text' => 'after end.'
- }
- ],
- 'parent' => {},
- 'type' => 'paragraph'
- }
- ],
- 'type' => 'text_root'
- };
- $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'end_of_line'}{'contents'}[0];
- $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'args'}[0];
- $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'args'}[0];
- $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'args'}[0];
- $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'parent'} = $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'args'}[0];
- $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'parent'} = $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1];
- $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'end_of_line'}{'contents'}[0];
- $result_trees{'end_of_line'}{'contents'}[0]{'contents'}[2]{'parent'} = $result_trees{'end_of_line'}{'contents'}[0];
- $result_trees{'end_of_line'}{'contents'}[0]{'parent'} = $result_trees{'end_of_line'};
- $result_texis{'end_of_line'} = 'verb at end of line @verb{
- @{ in verb at end of line @c comment
- and now end}after end.';
- $result_texts{'end_of_line'} = 'verb at end of line
- @{ in verb at end of line @c comment
- and now endafter end.';
- $result_errors{'end_of_line'} = [
- {
- 'error_line' => ':1: @verb without associated character
- ',
- 'file_name' => '',
- 'line_nr' => 1,
- 'macro' => '',
- 'text' => '@verb without associated character',
- 'type' => 'error'
- }
- ];
- 1;
|