How to insert markdown formatted instructions into AppDesigner?

11 Ansichten (letzte 30 Tage)
Dominik Mattioli
Dominik Mattioli am 1 Okt. 2020
Kommentiert: Mohammad Sami am 1 Okt. 2020
I'd like to insert my README.md instructions file into a textbox or panel within my app. I have only found documentation about publishing markup, and I'm not sure if it's possible to convert it. Here's my code.
fid = fopen( locateReadMe );
txt = "";
while ~feof( fid )
txt = vertcat( txt, fgetl( fid ) );
end
fclose( fid );
app.TextArea.set( 'Value', txt );
There is no interpreter for this ui control so the text just pastes as is.

Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by