Reputation: 8495
In Xcode 8.0, I'm making a playground. Is it possible to view the real source of a .xcplaygroundpage
, i.e. in a sense that does not render the markdown in the comments?
Upvotes: 2
Views: 956
Reputation: 70113
In a Playground, to show only code and raw markup, the real source of the file:
Menu Editor > Show Raw Markup
To display the rendered markup again, with interpreted Markdown and comments:
Menu Editor > Show Rendered Markup
Upvotes: 4