Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Commit709773a

Browse files
committed
use millennial lowercase more consistently
1 parent97c0d67 commit709773a

File tree

12 files changed

+28
-28
lines changed

12 files changed

+28
-28
lines changed

‎content/tutorial/02-sveltekit/02-routing/01-pages/README.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ Let's add a second route, `src/routes/about/+page.svelte`, which maps to `/about
1313
```svelte
1414
/// file: src/routes/about/+page.svelte
1515
<nav>
16-
<a href="/">Home</a>
17-
<a href="/about">About</a>
16+
<a href="/">home</a>
17+
<a href="/about">about</a>
1818
</nav>
1919
20-
<h1>About</h1>
21-
<p>This is the about page.</p>
20+
<h1>about</h1>
21+
<p>this is the about page.</p>
2222
```
2323

2424
We can now navigate between`/` and`/about`.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<nav>
2-
<ahref="/">Home</a>
3-
<ahref="/about">About</a>
2+
<ahref="/">home</a>
3+
<ahref="/about">about</a>
44
</nav>
55

6-
<h1>Home</h1>
7-
<p>This is the home page.</p>
6+
<h1>home</h1>
7+
<p>this is the home page.</p>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<nav>
2-
<ahref="/">Home</a>
3-
<ahref="/about">About</a>
2+
<ahref="/">home</a>
3+
<ahref="/about">about</a>
44
</nav>
55

6-
<h1>About</h1>
7-
<p>This is the about page.</p>
6+
<h1>about</h1>
7+
<p>this is the about page.</p>

‎content/tutorial/02-sveltekit/02-routing/02-layouts/README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ src/routes/
1919
```svelte
2020
/// file: src/routes/about/+page.svelte
2121
<nav>
22-
<a href="/">Home</a>
23-
<a href="/about">About</a>
22+
<a href="/">home</a>
23+
<a href="/about">about</a>
2424
</nav>
2525
2626
<slot />
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<nav>
2-
<ahref="/">Home</a>
3-
<ahref="/about">About</a>
2+
<ahref="/">home</a>
3+
<ahref="/about">about</a>
44
</nav>
55

66
<slot />
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<h1>Home</h1>
2-
<p>This is the home page.</p>
1+
<h1>home</h1>
2+
<p>this is the home page.</p>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<h1>About</h1>
2-
<p>This is the about page.</p>
1+
<h1>about</h1>
2+
<p>this is the about page.</p>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<nav>
2-
<ahref="/">Home</a>
3-
<ahref="/blog">Blog</a>
2+
<ahref="/">home</a>
3+
<ahref="/blog">blog</a>
44
</nav>
55

66
<slot />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<p>Home Page</p>
1+
<p>home</p>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<nav>
2-
<ahref="/">Home</a>
3-
<ahref="/blog">Blog</a>
2+
<ahref="/">home</a>
3+
<ahref="/blog">blog</a>
44
</nav>
55

66
<slot />

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp