diff --git a/src/Pages/Japan/Japanese/en/contrast-particle.md b/src/Pages/Japan/Japanese/en/contrast-particle.md new file mode 100644 index 0000000..4c7267c --- /dev/null +++ b/src/Pages/Japan/Japanese/en/contrast-particle.md @@ -0,0 +1,22 @@ +## は contrast particle + +The は particle can be used to indicate contrast. + +私背が低いですが、ケビン背が高いです。 + +"I'm short, Kevin is tall." + +The is the , the is the . + +--- + + + +僕イカすきだけど、タコ好きじゃない。 + +"I like squid, I don't like octopus." + +### 関係する動画 + +* [Episode21 「は」は時々(ときどき)「を」と「が」にとって代(か)わるけど、いつ? "Wa" sometimes replaces "o" and "ga". When?](https://www.youtube.com/watch?v=8_h0H-V9C4A) by: [Private Japanese Lessons](https://www.youtube.com/@PrivateJapaneseLessons) + diff --git a/src/Pages/Japan/en/main.md b/src/Pages/Japan/en/main.md index 66ea3b1..7facf46 100644 --- a/src/Pages/Japan/en/main.md +++ b/src/Pages/Japan/en/main.md @@ -9,4 +9,8 @@ The country of Japan and the Japanese language has facinated me for many years n These pages contain my notes on learning the language. -* [だけ vs しか](./japanese/dake-vs-shika) \ No newline at end of file +* [だけ vs しか](./japanese/dake-vs-shika) + +#### Particles + +* [は contrast particle](./japanese/contrast-particle) \ No newline at end of file diff --git a/src/Routers.js b/src/Routers.js index c0ad6d9..7e30527 100644 --- a/src/Routers.js +++ b/src/Routers.js @@ -7,7 +7,7 @@ import ElmPage from './Pages/Software/elm/ElmPage'; // Japan export const japaneseRoutes = languages.map(lang => { - const pages = ['dake-vs-shika',]; + const pages = ['contrast-particle', 'dake-vs-shika']; return pages.map(page => { const path = `/${lang}/japan/japanese/${page}`; const mdPath = `Japan/Japanese/${lang}/${page}.md`;