From a10cc41963987f95288090f15453b7c843dc4742 Mon Sep 17 00:00:00 2001 From: Yasutake Yohei Date: Sat, 30 Dec 2023 22:43:27 +0900 Subject: buildをgitignoreから削除 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/gian-tou/create-a-document/index.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 build/gian-tou/create-a-document/index.html (limited to 'build/gian-tou/create-a-document') diff --git a/build/gian-tou/create-a-document/index.html b/build/gian-tou/create-a-document/index.html new file mode 100644 index 00000000..4c27fecf --- /dev/null +++ b/build/gian-tou/create-a-document/index.html @@ -0,0 +1,29 @@ + + + + + +Create a Document | 小平市議・安竹洋平のまとめ + + + + +
メインコンテンツまでスキップ

Create a Document

+

Documents are groups of pages connected through:

+
    +
  • a sidebar
  • +
  • previous/next navigation
  • +
  • versioning
  • +
+

Create your first Doc

+

Create a Markdown file at docs/hello.md:

+
docs/hello.md
# Hello

This is my **first Docusaurus document**!
+

A new document is now available at http://localhost:3000/docs/hello.

+

Configure the Sidebar

+

Docusaurus automatically creates a sidebar from the docs folder.

+

Add metadata to customize the sidebar label and position:

+
docs/hello.md
---
sidebar_label: 'Hi!'
sidebar_position: 3
---

# Hello

This is my **first Docusaurus document**!
+

It is also possible to create your sidebar explicitly in sidebars.js:

+
sidebars.js
export default {
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
};
+ + \ No newline at end of file -- cgit v1.2.3-54-g00ecf