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/congratulations/index.html | 27 +++++++++++++++++ build/gian-tou/create-a-blog-post/index.html | 18 ++++++++++++ build/gian-tou/create-a-document/index.html | 29 +++++++++++++++++++ build/gian-tou/create-a-page/index.html | 27 +++++++++++++++++ build/gian-tou/deploy-your-site/index.html | 24 ++++++++++++++++ build/gian-tou/markdown-features/index.html | 43 ++++++++++++++++++++++++++++ build/gian-tou/test/index.html | 13 +++++++++ 7 files changed, 181 insertions(+) create mode 100644 build/gian-tou/congratulations/index.html create mode 100644 build/gian-tou/create-a-blog-post/index.html create mode 100644 build/gian-tou/create-a-document/index.html create mode 100644 build/gian-tou/create-a-page/index.html create mode 100644 build/gian-tou/deploy-your-site/index.html create mode 100644 build/gian-tou/markdown-features/index.html create mode 100644 build/gian-tou/test/index.html (limited to 'build/gian-tou') diff --git a/build/gian-tou/congratulations/index.html b/build/gian-tou/congratulations/index.html new file mode 100644 index 00000000..98233722 --- /dev/null +++ b/build/gian-tou/congratulations/index.html @@ -0,0 +1,27 @@ + + + + + +Congratulations! | 小平市議・安竹洋平のまとめ + + + + +
メインコンテンツまでスキップ

Congratulations!

+

You have just learned the basics of Docusaurus and made some changes to the initial template.

+

Docusaurus has much more to offer!

+

Have 5 more minutes? Take a look at versioning and i18n.

+

Anything unclear or buggy in this tutorial? Please report it!

+

What's next?

+
+ + \ No newline at end of file diff --git a/build/gian-tou/create-a-blog-post/index.html b/build/gian-tou/create-a-blog-post/index.html new file mode 100644 index 00000000..be318e47 --- /dev/null +++ b/build/gian-tou/create-a-blog-post/index.html @@ -0,0 +1,18 @@ + + + + + +Create a Blog Post | 小平市議・安竹洋平のまとめ + + + + +
メインコンテンツまでスキップ

Create a Blog Post

+

Docusaurus creates a page for each blog post, but also a blog index page, a tag system, an RSS feed...

+

Create your first Post

+

Create a file at blog/2021-02-28-greetings.md:

+
blog/2021-02-28-greetings.md
---
slug: greetings
title: Greetings!
authors:
- name: Joel Marcey
title: Co-creator of Docusaurus 1
url: https://github.com/JoelMarcey
image_url: https://github.com/JoelMarcey.png
- name: Sébastien Lorber
title: Docusaurus maintainer
url: https://sebastienlorber.com
image_url: https://github.com/slorber.png
tags: [greetings]
---

Congratulations, you have made your first post!

Feel free to play around and edit this post as much you like.
+

A new blog post is now available at http://localhost:3000/blog/greetings.

+ + \ No newline at end of file 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 diff --git a/build/gian-tou/create-a-page/index.html b/build/gian-tou/create-a-page/index.html new file mode 100644 index 00000000..5d248e6e --- /dev/null +++ b/build/gian-tou/create-a-page/index.html @@ -0,0 +1,27 @@ + + + + + +Create a Page | 小平市議・安竹洋平のまとめ + + + + +
メインコンテンツまでスキップ

Create a Page

+

Add Markdown or React files to src/pages to create a standalone page:

+
    +
  • src/pages/index.jslocalhost:3000/
  • +
  • src/pages/foo.mdlocalhost:3000/foo
  • +
  • src/pages/foo/bar.jslocalhost:3000/foo/bar
  • +
+

Create your first React Page

+

Create a file at src/pages/my-react-page.js:

+
src/pages/my-react-page.js
import React from 'react';
import Layout from '@theme/Layout';

export default function MyReactPage() {
return (
<Layout>
<h1>My React page</h1>
<p>This is a React page</p>
</Layout>
);
}
+

A new page is now available at http://localhost:3000/my-react-page.

+

Create your first Markdown Page

+

Create a file at src/pages/my-markdown-page.md:

+
src/pages/my-markdown-page.md
# My Markdown page

This is a Markdown page
+

A new page is now available at http://localhost:3000/my-markdown-page.

+ + \ No newline at end of file diff --git a/build/gian-tou/deploy-your-site/index.html b/build/gian-tou/deploy-your-site/index.html new file mode 100644 index 00000000..8cb641d1 --- /dev/null +++ b/build/gian-tou/deploy-your-site/index.html @@ -0,0 +1,24 @@ + + + + + +Deploy your site | 小平市議・安竹洋平のまとめ + + + + +
メインコンテンツまでスキップ

Deploy your site

+

Docusaurus is a static-site-generator (also called Jamstack).

+

It builds your site as simple static HTML, JavaScript and CSS files.

+

Build your site

+

Build your site for production:

+
npm run build
+

The static files are generated in the build folder.

+

Deploy your site

+

Test your production build locally:

+
npm run serve
+

The build folder is now served at http://localhost:3000/.

+

You can now deploy the build folder almost anywhere easily, for free or very small cost (read the Deployment Guide).

+ + \ No newline at end of file diff --git a/build/gian-tou/markdown-features/index.html b/build/gian-tou/markdown-features/index.html new file mode 100644 index 00000000..231d6c80 --- /dev/null +++ b/build/gian-tou/markdown-features/index.html @@ -0,0 +1,43 @@ + + + + + +Markdown Features | 小平市議・安竹洋平のまとめ + + + + +
メインコンテンツまでスキップ

Markdown Features

+

Docusaurus supports Markdown and a few additional features.

+

Front Matter

+

Markdown documents have metadata at the top called Front Matter:

+
my-doc.md
---
id: my-doc-id
title: My document title
description: My document description
slug: /my-custom-url
---

## Markdown heading

Markdown text with [links](./hello.md)
+ +

Regular Markdown links are supported, using url paths or relative file paths.

+
Let's see how to [Create a page](/create-a-page).
+
Let's see how to [Create a page](./create-a-page.md).
+

Result: Let's see how to Create a page.

+

Images

+

Regular Markdown images are supported.

+

You can use absolute paths to reference images in the static directory (static/img/docusaurus.png):

+
![Docusaurus logo](/img/docusaurus.png)
+

Docusaurus logo

+

You can reference images relative to the current file as well. This is particularly useful to colocate images close to the Markdown files using them:

+
![Docusaurus logo](./img/docusaurus.png)
+

Code Blocks

+

Markdown code blocks are supported with Syntax highlighting.

+
src/components/HelloDocusaurus.js
function HelloDocusaurus() {
return (
<h1>Hello, Docusaurus!</h1>
)
}
+
src/components/HelloDocusaurus.js
function HelloDocusaurus() {
return <h1>Hello, Docusaurus!</h1>;
}
+

Admonitions

+

Docusaurus has a special syntax to create admonitions and callouts:

+
My tip

Use this awesome feature option

:::

Take care

This action is dangerous

My tip

Use this awesome feature option

+
Take care

This action is dangerous

+

MDX and React Components

+

MDX can make your documentation more interactive and allows using any React components inside Markdown:

+
export const Highlight = ({children, color}) => (
<span
style={{
backgroundColor: color,
borderRadius: '20px',
color: '#fff',
padding: '10px',
cursor: 'pointer',
}}
onClick={() => {
alert(`You clicked the color ${color} with label ${children}`)
}}>
{children}
</span>
);

This is <Highlight color="#25c2a0">Docusaurus green</Highlight> !

This is <Highlight color="#1877F2">Facebook blue</Highlight> !
+ +

This is Docusaurus green !

+

This is Facebook blue !

+ + \ No newline at end of file diff --git a/build/gian-tou/test/index.html b/build/gian-tou/test/index.html new file mode 100644 index 00000000..a8efef8a --- /dev/null +++ b/build/gian-tou/test/index.html @@ -0,0 +1,13 @@ + + + + + +test | 小平市議・安竹洋平のまとめ + + + + +
メインコンテンツまでスキップ
+ + \ No newline at end of file -- cgit v1.2.3-54-g00ecf