from
htmltool
by Bjorn Alsberg The HTML Toolbox (HT) stores various crosslink information about Matlab programs using HTML.
TEXT_wrt(fid,U)
function [] = TEXT_wrt(fid,U)
% [] = TEXT_wrt(fid,U)
% Writes the text in U in file fid
[n,m]=size(U);
fprintf(fid,'%s \n','<pre>');
for i =1:n
fprintf(fid,'%s \n',deblank(U(i,:)));
end;
fprintf(fid,'%s \n','</pre>');