mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
Merge commit 'be59675add'
* commit 'be59675add':
doc: Change the multitable rendering in texi2pod
Conflicts:
doc/texi2pod.pl
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
8f23045b16
1 changed files with 11 additions and 3 deletions
|
|
@ -282,6 +282,14 @@ INF: while(<$inf>) {
|
|||
$_ = "\n=over 4\n";
|
||||
};
|
||||
|
||||
/^\@(multitable)\s+{.*/ and do {
|
||||
push @endwstack, $endw;
|
||||
push @icstack, $ic;
|
||||
$endw = $1;
|
||||
$ic = "";
|
||||
$_ = "\n=over 4\n";
|
||||
};
|
||||
|
||||
/^\@((?:small)?example|display)/ and do {
|
||||
push @endwstack, $endw;
|
||||
$endw = $1;
|
||||
|
|
@ -298,10 +306,10 @@ INF: while(<$inf>) {
|
|||
|
||||
/^\@tab\s+(.*\S)\s*$/ and $endw eq "multitable" and do {
|
||||
my $columns = $1;
|
||||
$columns =~ s/\@tab/ : /;
|
||||
$columns =~ s/\@tab//;
|
||||
|
||||
$_ = " : ". $columns;
|
||||
$chapter =~ s/\n+\s+$//;
|
||||
$_ = $columns;
|
||||
$chapter =~ s/$//;
|
||||
};
|
||||
|
||||
/^\@itemx?\s*(.+)?$/ and do {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue