So to unbunch my "display" text, I just put this in the Procedure Setup:
L:JobDescription=REQ:JobDescription
LOOP
IF INSTRING('<13,10>',L:JobDescription,1,1)
s#=INSTRING('<13,10>',L:JobDescription,1,1)
L:JobDescription=SUB(L:JobDescription,1,s#-1) & '<br />' & SUB(L:JobDescription,s#+2,10000)
ELSE
BREAK
END
END