X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=doc%2Fsrc%2Frtd%2Ffmt_changes.ksh;h=a3528ccbbf710fac9cb864287d88967c890fb38e;hb=6b0369579da03d3ddd867211072ecd6a490339d9;hp=930bce44f613804df56b1cd42393db8d710dfe2b;hpb=3bcb5b17e0b713d7a61389dcafa0d92a0704a7fb;p=ric-plt%2Flib%2Frmr.git diff --git a/doc/src/rtd/fmt_changes.ksh b/doc/src/rtd/fmt_changes.ksh index 930bce4..a3528cc 100644 --- a/doc/src/rtd/fmt_changes.ksh +++ b/doc/src/rtd/fmt_changes.ksh @@ -54,7 +54,19 @@ do /4\.0\.5$/ { printf( "&h1(Bronze Release)\n" ); rheader = 1 } /1\.11\.1$/ { printf( "&h1(Amber Release)\n" ); rheader = 1 } + print_raw && /^\t\t/ { # anything indented should be unformatted + gsub( "^\t\t", " ", $0 ) + if( ! format_off ) { + format_off = 1 + printf( ".nf\n" ) + } + } + print_raw && /^$/ { # include blank lines after first real stuff + if( format_off ) { + format_off = 0 + printf( ".fo\n" ); + } printf( "&space\n\n" ); next }