HTML Tags support in MATLAB
이전 댓글 표시
Hey,
I was just wondering why HTML tags work in MATLAB and how good of a practice is it to use them.
For example, while using fprintf function I can just use <b>text</b> or <i>text</i> or even <strong>text</strong> to display out bold, italicized and bold texts respectively on the command window.
Example:
fprintf(<strong>Hello World</strong>);
Output: Hello World
So, what is the underlying principle for this?
Also is there any other way I can print out bold or italics text in MATLAB using fprintf?
답변 (1개)
Walter Roberson
2021년 3월 8일
0 개 추천
See the File Exchange contribution cprintf() https://www.mathworks.com/matlabcentral/fileexchange/24093-cprintf-display-formatted-colored-text-in-the-command-wind
댓글 수: 2
David Beckham
2021년 3월 8일
Rik
2021년 3월 8일
I would expect the command window parses most basic HTML tags. That is also how documentation links in errors and warnings work.
Did you search the documentation for something related?
카테고리
도움말 센터 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!