18 lines
396 B
Sed
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
|
|
}
|
|
|
|
|
|
#------------------------------------------------------------------------------
|