Skip to content

Commit 8a96283

Browse files
committed
Termコンポーネントを書くための[[用語]]記法を導入
1 parent 2ac1f9c commit 8a96283

File tree

5 files changed

+2900
-127
lines changed

5 files changed

+2900
-127
lines changed

docs/1-trial-session/02-html/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import openInBrowserVideo from "./open-in-browser.mp4";
77
import showFileExtensionsVideo from "./show-file-extensions.mp4";
88
import reloadBrowserVideo from "./reload-browser.mp4";
99

10-
Web開発に必ず用いられる言語があります。<Term>**HTML**</Term>とCSS、そしてJavaScriptです。これらは互いに異なる役割をもっています。まずは最も基本となる<Term>HTML</Term>から学んでいきましょう。
10+
Web開発に必ず用いられる言語があります。[[**HTML**]]とCSS、そしてJavaScriptです。これらは互いに異なる役割をもっています。まずは最も基本となる[[HTML]]から学んでいきましょう。
1111

1212
![Web開発で用いられる言語](./web-development-languages.drawio.svg)
1313

14-
## <Term>HTML</Term>を書き始める
14+
## [[HTML]]を書き始める
1515

1616
VS Codeの画面左端には、ファイル一覧が表示されています。新しいファイルを作成して、`index.html`と名付けましょう。ファイルの中身を次のようにした後、保存します。保存にはショートカットキー (<kbd>Ctrl</kbd> + <kbd>S</kbd> (Windows) / <kbd>command</kbd> + <kbd>S</kbd> (macOS) ) を用いてください。
1717

docusaurus.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type * as Preset from "@docusaurus/preset-classic";
44
import { execSync } from "node:child_process";
55
import math from "remark-math";
66
import katex from "rehype-katex";
7+
import remarkTerm from "./src/remark/remark-term";
78

89
const config: Config = {
910
title: "ut.code(); Learn",
@@ -46,7 +47,7 @@ const config: Config = {
4647
showLastUpdateTime: true,
4748
sidebarPath: "./sidebars.ts",
4849
editUrl: "https://github.com/ut-code/utcode-learn/blob/master/",
49-
remarkPlugins: [math],
50+
remarkPlugins: [math, remarkTerm],
5051
rehypePlugins: [katex],
5152
},
5253
theme: {

0 commit comments

Comments
 (0)