Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
be59675a
Commit
be59675a
authored
Apr 07, 2014
by
Luca Barbato
Committed by
Vittorio Giovara
Apr 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: Change the multitable rendering in texi2pod
Makes it working better for our documentation purposes.
parent
59388dac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
texi2pod.pl
doc/texi2pod.pl
+11
-3
No files found.
doc/texi2pod.pl
View file @
be59675a
...
...
@@ -277,6 +277,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
;
...
...
@@ -293,10 +301,10 @@ INF: while(<$inf>) {
/^\@tab\s+(.*\S)\s*$/
and
$endw
eq
"multitable"
and
do
{
my
$columns
=
$1
;
$columns
=~
s/\@tab/
:
/
;
$columns
=~
s/\@tab//
;
$_
=
" : "
.
$columns
;
$section
=~
s/
\n+\s+
$//
;
$_
=
$columns
;
$section
=~
s/$//
;
};
/^\@itemx?\s*(.+)?$/
and
do
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment