diff --git a/docs/python/get-started/index.mdx b/docs/python/get-started/index.mdx index 7b9d61856..4fd22e505 100644 --- a/docs/python/get-started/index.mdx +++ b/docs/python/get-started/index.mdx @@ -16,7 +16,7 @@ import OpenInColab from "@site/src/components/OpenInColab/OpenInColab"; print("Hello World!") ``` - + `Hello World!` と表示されましたか。 @@ -32,7 +32,7 @@ print("Hello World!") print("Hello World!") # この部分もコメントです。 ``` - + ## 算術演算子 @@ -42,7 +42,7 @@ Python で計算をしてみましょう。次のように書くと、演算を 1+1 ``` - + :::info 上のプログラムは、次のようにしても実行できます。それぞれには、少し違いがあるようですが気にしなくて大丈夫でしょう。 @@ -53,7 +53,7 @@ Google Colaboratory 以外で実行するときなど上のようなプログラ print(1+1) ``` - + ::: Python では様々な計算ができます。 @@ -75,4 +75,4 @@ Python では様々な計算ができます。 (1+5**0.5)/2 ``` - + diff --git a/docs/python/variables/index.mdx b/docs/python/variables/index.mdx index 809bd3e41..579d4bb28 100644 --- a/docs/python/variables/index.mdx +++ b/docs/python/variables/index.mdx @@ -16,7 +16,7 @@ $$ 331.5+0.6*10 ``` - + 一応できましたが、 $t$ を変えようとすると、(これぐらいならすぐできますが)いちいちプログラムを全て読み直さないといけません。 @@ -27,7 +27,7 @@ t=10 331.5+0.6*t ``` - + :::tip 定数(他の言語の学習者へ) Python では定数は使えないようです。慣習的に定数は大文字のみの変数として表すようです。 diff --git a/src/components/OpenInColab/OpenInColab.tsx b/src/components/OpenInColab/OpenInColab.tsx index e84d7da86..38b370b17 100644 --- a/src/components/OpenInColab/OpenInColab.tsx +++ b/src/components/OpenInColab/OpenInColab.tsx @@ -1,12 +1,14 @@ import React from "react"; +import { useLocation } from "@docusaurus/router"; import styles from "./styles.module.css"; export default function OpenInColab({ path }) { + const pathname = useLocation().pathname; return ( <>