Files
OpenFOAM-12/bin/tools/doxyFilter-table.sed
2020-02-25 12:24:17 +00:00

18 lines
396 B
Sed

#------------------------------------------------------------------------------
# Script
# doxyFilter-table.sed
#
# Description
# Splice lines in tables separated by the \\\n continuation tag
#------------------------------------------------------------------------------
:x
/\\\\$/{
N
s/\\\\\n */ /
bx
}
#------------------------------------------------------------------------------