Lines Matching full:content
131 my $content = $3;
151 $content =~ s/[,.;]$//;
153 push @{$symbols{$content}->{file}}, " $file:" . ($ln - 1);
156 $what .= "\xac" . $content;
166 $what = $content;
167 $label = $content;
170 push @labels, [($content, $label)];
173 push @{$data{$nametag}->{symbols}}, $content if ($data{$nametag}->{what});
209 $content = ' ' x length($new_tag) . $sep . $content;
210 while ($content =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {}
211 if ($content =~ m/^(\s*)(\S.*)$/) {
214 $content = "$2\n";
215 $data{$what}->{$tag} .= $content;
221 $data{$what}->{$tag} = $content;
234 my $content = $_;
235 while ($content =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {}
243 if ($content =~ m/^(\s*)(\S.*)$/) {
245 $content = "$2\n";
248 $space = "" if (!($content =~ s/^($space)//));
250 $data{$what}->{$tag} .= $content;
261 parse_error($file, $ln, "Unexpected content", $_);
281 my ($content, $label) = @{$p};
488 foreach my $content(@{$data{$what}->{symbols}}) {
489 my $label = $data{$symbols{$content}->{xref}}->{label};
491 # Escape special chars from content
492 $content =~s/([\x00-\x1f\x21-\x2f\x3a-\x40\x7b-\xff])/\\$1/g;
494 print "- :ref:`$content <$label>`\n\n";