Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Comments on In Xcode 7 playground is not showing is markup format

I am trying to change the format for comments into markup format introduced in Xcode 7 playgrounds. I have clicked rendered markup in "Editor -> Show Rendered Markup. It does show the comments already written in the playground in markup format but doesn't simultaneously convert the ones I create in it. In order for that to be converted into markup format, I either have to close the playground file or change it to raw markup and then back to rendered markup. Isn't it supposed to convert it into markup format the same instant I type a new comment?

Thanks in advance.

like image 555
yousafe007 Avatar asked Jan 30 '26 02:01

yousafe007


2 Answers

No, that is not the intention of the playground markdown. It is more like the message you type here in stackoverflow: The markdown is meant to be usable in plain text mode (when you type).

Also while you type, Playground is trying to execute your code, not update the playground display.

I think the behavior is intentional.

like image 147
Mundi Avatar answered Feb 01 '26 17:02

Mundi


It worked for me in Xcode 9.1

Rendered Markup

  • Clicking Editor -> Show Rendered Markup

Raw Markup

  • Clicking Editor -> Show Raw Markup
like image 20
Vinoth Vino Avatar answered Feb 01 '26 17:02

Vinoth Vino