Skip to content

docs: Fix formatting for project setup prompts in Next.js tutorial #1302

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
15 changes: 8 additions & 7 deletions docs/source/tutorials/next.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@ npx create-next-app@latest

On installation, you'll see various prompts. For this demo, we'll be selecting those shown below in bold:

<pre>√ What is your project named? ... next
√ Would you like to use TypeScript? ... <b>No</b> / Yes
√ Would you like to use ESLint? ... No / <b>Yes</b>
√ Would you like to use Tailwind CSS? ... No / <b>Yes</b>
√ Would you like to use `src/` directory? ... No / <b>Yes</b>
√ Would you like to use App Router? (recommended) ... No / <b>Yes</b>
√ Would you like to customize the default import alias? ... <b>No</b> / Yes
<pre>
<span>√ What is your project named? ... next</span>
<span>√ Would you like to use TypeScript? ... <span style="color: green;"><b>No</span></b> / Yes</span>
<span>√ Would you like to use ESLint? ... No / <span style="color: green;"><b>Yes</b></span>
<span>√ Would you like to use Tailwind CSS? ... No / <span style="color: green;"><b>Yes</b></span></span>
<span>√ Would you like to use `src/` directory? ... No / <span style="color: green;"><b>Yes</b></span></span>
<span>√ Would you like to use App Router? (recommended) ... No / <span style="color: green;"><b>Yes</b></span></span>
</span>√ Would you like to customize the default import alias? ... <span style="color: green;"><b>No</b></span> / Yes</span>
</pre>


Expand Down