By default, Xcode does not render Markdown files as formatted text. To enable Markdown rendering for your project:
-
In the project root, create a file named: .xcodesamplecode.plist
-
Add the following XML content:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array/>
</plist>- Reopen your Xcode project. Xcode will now render Markdown files (.md) with full formatting inside the editor.
✅ Result: Markdown documents appear styled and rendered directly in Xcode, just like documentation pages.

