Felix
Felix

Reputation: 8495

Is it possible to view source code WITHOUT rendering markdown in a .xcplaygroundpage?

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

Answers (1)

Eric Aya
Eric Aya

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

Related Questions