Draft a README section
Check headings, lists, and inline code in one preview.
## Install
1. Run `npm install`.
2. Start the app.Expected: A heading and two-step ordered list are rendered.
Try in editorToolerWork Code Studio includes a Markdown editor online for README drafts, notes, docs, and quick formatting checks. Write Markdown on the left and preview readable output in the browser.
# Hello - Write Markdown - Preview output - Save locally
Markdown preview renders headings, lists, links, and code blocks.
Markdown text is converted into a preview document in the browser; fenced code is displayed, not executed. It is designed for focused snippets and learning tasks where a fast browser workspace is more useful than a full local project.
Start with the built-in project, replace its sample with one of these focused examples, and compare your result with the expected output.
Check headings, lists, and inline code in one preview.
## Install
1. Run `npm install`.
2. Start the app.Expected: A heading and two-step ordered list are rendered.
Try in editorPreview a fenced JavaScript block without executing it.
```js
console.log("hello");
```Expected: The JavaScript appears as a formatted code block.
Try in editorYes. The Markdown page opens a browser editor with preview support.
Yes. It is useful for README files, notes, docs, and content drafts.
No. Markdown is rendered as formatted content and code blocks are displayed safely.
Yes. Code Studio stores the local project in browser storage.
Markdown text is converted into a preview document in the browser; fenced code is displayed, not executed. The workspace also keeps the active project in local browser storage.
The preview targets common Markdown syntax and is not tied to every platform-specific extension. Embedded scripts are not executed in the safe preview.