Skip to content

Commit

Permalink
docs:add debug step
Browse files Browse the repository at this point in the history
Signed-off-by: RibhuDP <[email protected]>
  • Loading branch information
ribdp committed Apr 2, 2024
1 parent 2246da1 commit 4b09264
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/source/reference_api/gen_sysobj_doc.m
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,14 @@
all_props = [all_props,s];
end
top_doc = help(dotmfilename);
disp("Hello")
disp(top_doc)
top_doc = strsplit(top_doc,'\n');

top_doc = top_doc(1:end - 3);
top_doc = strtrim(top_doc); %Remove spurious leading whitespaces
disp(part)
disp(top_doc)
top_doc(1) = cellstr(strcat("**", top_doc(1), "**"));
top_doc = strjoin(top_doc, '\n');
top_doc = char(top_doc);
Expand Down

0 comments on commit 4b09264

Please sign in to comment.