Is it possible to use (publish) markup inside nested functions
Show older comments
Hi all,
I have the following function
function test1
%%Individual sample reports
reportSample;
%%overall summary
reportSummary
function reportSample
for i = 1 : 5
disp( [ '<html><h3>sample ' num2str( i ) '</h3><hr></html>' ] );
end
end
function reportSummary
disp( [ '<html><h3>summary</h3><hr></html>' ] );
end
end
When I attempt to publish this function this yields the following report

The problem is that the heading 'overall summary'appears directly after the heading 'Individual summary reports' even though the html referencing the individual summaries has not been published. Is it possible to force the publishing of the contents of the nested functions so that the correct ordering is achieved, i.e. the individual report summaries come before the overall summary?
Best wishes,
John
1 Comment
John Anderson
on 16 Aug 2016
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB Report Generator in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!