Change documentation color for help
조회 수: 2 (최근 30일)
이전 댓글 표시
I'd like to change the color that some of the documentation that is displayed when entering the command
help myfunction
function myfunc = afunction()
%my documentation
%DOCUMENTATION THAT I WOULD LIKE RED
functionstuff
end
Any way to do this?
댓글 수: 0
채택된 답변
Walter Roberson
2017년 8월 4일
No, there is no way to do that, not using help.
If you were using Live Scripts then you could embed Latex formatted comments and those could potentially have color information in them.
댓글 수: 0
추가 답변 (1개)
Baptiste Ottino
2017년 8월 8일
편집: Baptiste Ottino
2017년 8월 8일
It is not possible to do something like this for:
help afunction
However, it is perfectly possible to do this for the ouput of
doc afunction
which is more elegant, but it is a bit tricky. Here is how.
The idea is to directly use html tags inside your documentation. For this you have to open the help2html function
edit help2html
and between lines 69 and 70 add
helpstr = regexprep(helpstr,'<','<');
helpstr = regexprep(helpstr,'>','>');
Which will ensure that html tags can be used in your help. Then, use the span tag to define the color:
function myfunc = afunction()
%my documentation
%<span style="color:red">DOCUMENTATION THAT I WOULD LIKE RED</span>
functionstuff
end
For the following result:
Hope this helps.
EDIT:
I thought of a better solution. First, you can copy the help2html file and its 'private' directory above in the Matlab path to overload it, which is safer, second, instead of adding the lines I suggested, just comment line 25
% helpstr = fixsymbols(helpstr);
댓글 수: 2
Walter Roberson
2017년 8월 8일
(I touched up your code so that it shows up correctly. It is an oddity of the system that HTML named entities are translated into the designated entity even in code blocks, so when you wrote < in your code, that gets translated to < . To get it to show up right you have to replace the & with &
참고 항목
카테고리
Help Center 및 File Exchange에서 Environment and Settings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!