File tree Expand file tree Collapse file tree 5 files changed +2900
-127
lines changed
docs/1-trial-session/02-html Expand file tree Collapse file tree 5 files changed +2900
-127
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ import openInBrowserVideo from "./open-in-browser.mp4";
77import showFileExtensionsVideo from " ./show-file-extensions.mp4" ;
88import 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
1616VS Codeの画面左端には、ファイル一覧が表示されています。新しいファイルを作成して、` index.html ` と名付けましょう。ファイルの中身を次のようにした後、保存します。保存にはショートカットキー (<kbd >Ctrl</kbd > + <kbd >S</kbd > (Windows) / <kbd >command</kbd > + <kbd >S</kbd > (macOS) ) を用いてください。
1717
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import type * as Preset from "@docusaurus/preset-classic";
44import { execSync } from "node:child_process" ;
55import math from "remark-math" ;
66import katex from "rehype-katex" ;
7+ import remarkTerm from "./src/remark/remark-term" ;
78
89const 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 : {
You can’t perform that action at this time.
0 commit comments