File tree Expand file tree Collapse file tree 2 files changed +22
-8
lines changed Expand file tree Collapse file tree 2 files changed +22
-8
lines changed Original file line number Diff line number Diff line change @@ -84,18 +84,22 @@ import LifeGame from "@site/src/components/LifeGame/LifeGame";
84
84
85
85
<InteractiveCodeEditor
86
86
language = " markdown"
87
- defaultValue = { ` - アイテム 1
87
+ defaultValue = { ` \
88
+ - アイテム 1
88
89
- アイテム 2
89
- - アイテム 3 ` }
90
+ - アイテム 3\
91
+ ` }
90
92
/>
91
93
92
94
6 . 番号付き箇条書きは次のようにして書けます。
93
95
94
96
<InteractiveCodeEditor
95
97
language = " markdown"
96
- defaultValue = { ` 1. アイテム 1
98
+ defaultValue = { ` \
99
+ 1. アイテム 1
97
100
1. アイテム 2
98
- 1. アイテム 3 ` }
101
+ 1. アイテム 3\
102
+ ` }
99
103
/>
100
104
101
105
7 . バッククォート( `` ` `` )で囲むことでインラインコードを表示することができます。
@@ -106,9 +110,11 @@ import LifeGame from "@site/src/components/LifeGame/LifeGame";
106
110
107
111
<InteractiveCodeEditor
108
112
language = " markdown"
109
- defaultValue = { ` \`\`\` python
113
+ defaultValue = { ` \
114
+ \`\`\` python
110
115
print("Hello World!")
111
- \`\`\` ` }
116
+ \`\`\`\
117
+ ` }
112
118
/>
113
119
114
120
9 . リンクは次のようにして表すことができます。
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Web サイトは、HTML を用いて作るのが一般的です。以下に HTML
19
19
20
20
<InteractiveCodeEditor
21
21
language = " html"
22
- defaultValue = { `
22
+ defaultValue = { ` \
23
23
<!DOCTYPE html>
24
24
<html lang="ja">
25
25
<head>
@@ -30,7 +30,7 @@ Web サイトは、HTML を用いて作るのが一般的です。以下に HTML
30
30
<body>
31
31
<p>Hello World!</p>
32
32
</body>
33
- </html>
33
+ </html>\
34
34
` }
35
35
/>
36
36
@@ -96,3 +96,11 @@ minusButton.onclick = () => {
96
96
以降の手順に沿うことで、このシケプリと全く同じようなものを作成することができます。
97
97
98
98
<DocCardList />
99
+
100
+ 完成品は以下のようになります。
101
+
102
+ <iframe
103
+ width = " 100%"
104
+ height = " 400vw"
105
+ src = " https://docusaurus-sample.onrender.com/docs/intro"
106
+ ></iframe >
You can’t perform that action at this time.
0 commit comments