mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
doxyFilter: Added support for continuation lines in Doxygen tables
The continuation line are denoted by the \\ characters at the end of the
previous line e.g.
\table
Property | Description | Required | Default value
setAverage | Switch to activate setting of average value | no | false
perturb | Perturb points for regular geometries | no | 1e-5
fieldTableName | Alternative field name to sample | no| this field name
mapMethod | Type of mapping | no | planarInterpolation
offset | Offset to mapped values | no | Zero
dataDir | Top-level directory of the points and field data \\
| no | constant/boundaryData/\<patch name\>
points | Path including name of points file relative to dataDir \\
| no | points
sample | Name of the sub-directory in the time directories \\
containing the fields | no | ""
\endtable
This commit is contained in:
15
bin/tools/doxyFilter-table.sed
Normal file
15
bin/tools/doxyFilter-table.sed
Normal file
@ -0,0 +1,15 @@
|
||||
#------------------------------------------------------------------------------
|
||||
# Script
|
||||
# doxyFilter-table.sed
|
||||
#
|
||||
# Description
|
||||
# Splice lines in tables separated by the \\\n continuation tag
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
/\\\\/{
|
||||
N
|
||||
s/\\\\\n */ /
|
||||
}
|
||||
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
Reference in New Issue
Block a user