mirror of
https://github.com/kou029w/zenn.dev.git
synced 2025-01-18 16:07:59 +00:00
update book
This commit is contained in:
parent
5263a57d95
commit
497e20ae22
11 changed files with 18 additions and 6376 deletions
14
bin/bookgen
14
bin/bookgen
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env node
|
||||
const assert = require("assert");
|
||||
const path = require("path");
|
||||
const fs = require("fs/promises");
|
||||
const sidebars = require("../csb-jp.github.io/sidebars.js");
|
||||
|
@ -14,7 +13,7 @@ function flatten(object) {
|
|||
}
|
||||
|
||||
async function main() {
|
||||
const mdFiles = [];
|
||||
let chapter = 1;
|
||||
|
||||
for (const id of flatten(sidebars)) {
|
||||
const file = path.resolve(docsPath, `${id}.md`);
|
||||
|
@ -23,12 +22,11 @@ async function main() {
|
|||
} catch {
|
||||
continue;
|
||||
}
|
||||
mdFiles.push(file);
|
||||
}
|
||||
|
||||
for (const [i, file] of mdFiles.entries()) {
|
||||
const chapter = i + 1;
|
||||
await fs.copyFile(file, path.resolve(bookPath, `${chapter}.md`));
|
||||
await fs.copyFile(
|
||||
file,
|
||||
path.resolve(bookPath, `${chapter}.${id.replaceAll("/", "-")}.md`)
|
||||
);
|
||||
chapter += 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -45,26 +45,18 @@ Live を中断するには、[■ Stop Session]ボタンを押します。
|
|||
|
||||
相手との編集権限を設定を変更するペインです。
|
||||
|
||||
誰でも編集
|
||||
|
||||
: Everyone can edit
|
||||
誰でも編集: Everyone can edit
|
||||
共有リンクを知っている相手なら誰でも編集できます。
|
||||
|
||||
相手に応じた編集権限の制御
|
||||
|
||||
: Classroom mode
|
||||
相手に応じた編集権限の制御: Classroom mode
|
||||
許可した相手のみ編集を行えます。編集が許可された相手は[Editors]ペインに表示されます。[Viewers]ペインの中のユーザー名の隣にある[+]ボタンを押すとそのユーザーによる編集が許可されます。
|
||||
|
||||
## Preferences (設定)
|
||||
|
||||
共同編集の際に便利な機能の設定のためのペインです。
|
||||
|
||||
チャット
|
||||
|
||||
: Chat enabled
|
||||
チャット: Chat enabled
|
||||
チャット機能の有効化を行います。
|
||||
|
||||
通知
|
||||
|
||||
: Show notifications
|
||||
通知: Show notifications
|
||||
通知機能の有効化を行います。
|
|
@ -13,27 +13,21 @@ title: 設定
|
|||
|
||||
サンドボックスの設定は sandbox.config.json ファイルの内容を変更することで行います。左端のアクティビティの中から[Configuration Files]→[sandbox.config.json]→[Create]または[Edit]選択すると sandbox.config.json の内容を変更できます
|
||||
|
||||
Infinite Loop Protection
|
||||
|
||||
: `infiniteLoopProtection`
|
||||
Infinite Loop Protection: `infiniteLoopProtection`
|
||||
無限ループを検知したとき実行を停止するかどうか設定します。(デフォルト: `false` 停止しない)
|
||||
|
||||
:::message
|
||||
無限ループを動作したい場合は`true`に設定しましょう。
|
||||
:::
|
||||
|
||||
Hard Reload on Change
|
||||
|
||||
: `hardReloadOnChange`
|
||||
Hard Reload on Change: `hardReloadOnChange`
|
||||
ファイルを変更するたび強制的にリロードするかどうか設定します。(デフォルト: `false` 強制的なリロードをしない)
|
||||
|
||||
:::message
|
||||
`setInterval()`などグローバルな状態を扱う際は`true`に設定しましょう。
|
||||
:::
|
||||
|
||||
Template
|
||||
|
||||
: [`template`](https://github.com/codesandbox/codesandbox-importers/blob/2ef3155b84a056e808c146485def6016d43a7318/packages/types/index.d.ts#L34-L59)
|
||||
Template: [`template`](https://github.com/codesandbox/codesandbox-importers/blob/97d52141aa025ac7baf83b9574a9e5ae4f771df7/packages/types/index.d.ts#L38-L65)
|
||||
選択したテンプレートを使用します。(`static` 静的ファイル、`node` Node.js コンテナー環境)
|
||||
|
||||
## .prettierrc
|
||||
|
@ -42,7 +36,7 @@ Template
|
|||
|
||||
## netlify.toml
|
||||
|
||||
:::message alert
|
||||
:::message
|
||||
デプロイに関する設定です。
|
||||
:::
|
||||
|
||||
|
@ -50,7 +44,7 @@ Netlify へのデプロイに関わる設定ファイルです。詳しくは[Ne
|
|||
|
||||
## now.json (vercel.json)
|
||||
|
||||
:::message alert
|
||||
:::message
|
||||
デプロイに関する設定です。
|
||||
:::
|
||||
|
Loading…
Add table
Reference in a new issue