Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/start/framework/react/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ title: Getting Started

Choose one of the following options to start building a _new_ TanStack Start project:

- [TanStack Start CLI](./quick-start) - Just run `npm create @tanstack/start@latest`. Local, fast, and optionally customizable
- [TanStack Start CLI](./quick-start) - Just run `npx @tanstack/cli create my-app`. Local, fast, and optionally customizable
- [TanStack Builder](https://tanstack.com/builder) - A visual interface to configure new TanStack projects with a few clicks
- [Quick Start Examples](./quick-start) Download or clone one of our official examples
- [Build a project from scratch](./build-from-scratch) - A guide to building a TanStack Start project line-by-line, file-by-file.
Expand Down
4 changes: 2 additions & 2 deletions docs/start/framework/react/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ title: Quick Start
The fastest way to get a Start project up and running is with the CLI. Just run

```
pnpm create @tanstack/start@latest
pnpx @tanstack/cli create my-app
```

or

```
npm create @tanstack/start@latest
npx @tanstack/cli create my-app
```
Comment on lines 10 to 18
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add language identifiers to fenced command blocks.

Both command snippets are missing a fence language (bash), which triggers markdownlint MD040 and hurts rendering consistency.

Suggested patch
-```
+```bash
 pnpx `@tanstack/cli` create my-app

@@
- +bash
npx @tanstack/cli create my-app

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
```
pnpm create @tanstack/start@latest
pnpx @tanstack/cli create my-app
```
or
```
npm create @tanstack/start@latest
npx @tanstack/cli create my-app
```
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 10-10: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


[warning] 16-16: Fenced code blocks should have a language specified

(MD040, fenced-code-language)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/start/framework/react/quick-start.md` around lines 10 - 18, The two
fenced command blocks in the React quick-start markdown are missing language
identifiers; update both triple-backtick fences around the commands "pnpx
`@tanstack/cli` create my-app" and "npx `@tanstack/cli` create my-app" to use
```bash so they include the bash language identifier (e.g., change ``` to
```bash for each block) to satisfy markdownlint MD040 and improve rendering
consistency.


depending on your package manager of choice. You'll be prompted to add things like Tailwind, eslint, and a ton of other options.
Expand Down