X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=doc%2Fsrc%2Frtd%2Ffmt_changes.ksh;h=c8cda01dc80b5e558f3fe5e477082b9b714191ba;hb=refs%2Fchanges%2F81%2F5681%2F3;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..c8cda01 100644 --- a/doc/src/rtd/fmt_changes.ksh +++ b/doc/src/rtd/fmt_changes.ksh @@ -51,10 +51,23 @@ do /^#/ { next } # ditch all comments # tag project releases by matching release tag associated + /4\.4\.6$/ { printf( "&h1(Cherry Release)\n" ); rheader = 1 } /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 }