From 9ff520453f2019e87f83a525a5a219373b612073 Mon Sep 17 00:00:00 2001 From: Yasutake Yohei Date: Sun, 31 Dec 2023 01:36:15 +0900 Subject: build --- 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/index.html | 14 +++++++++ build/gian-tou/markdown-features/index.html | 43 ---------------------------- build/gian-tou/test/index.html | 13 --------- 8 files changed, 14 insertions(+), 181 deletions(-) delete mode 100644 build/gian-tou/congratulations/index.html delete mode 100644 build/gian-tou/create-a-blog-post/index.html delete mode 100644 build/gian-tou/create-a-document/index.html delete mode 100644 build/gian-tou/create-a-page/index.html delete mode 100644 build/gian-tou/deploy-your-site/index.html create mode 100644 build/gian-tou/index.html delete mode 100644 build/gian-tou/markdown-features/index.html delete 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 deleted file mode 100644 index 98233722..00000000 --- a/build/gian-tou/congratulations/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - -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 deleted file mode 100644 index be318e47..00000000 --- a/build/gian-tou/create-a-blog-post/index.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - -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 deleted file mode 100644 index 4c27fecf..00000000 --- a/build/gian-tou/create-a-document/index.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - -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 deleted file mode 100644 index 5d248e6e..00000000 --- a/build/gian-tou/create-a-page/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - -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 deleted file mode 100644 index 8cb641d1..00000000 --- a/build/gian-tou/deploy-your-site/index.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - -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/index.html b/build/gian-tou/index.html new file mode 100644 index 00000000..6e36ba33 --- /dev/null +++ b/build/gian-tou/index.html @@ -0,0 +1,14 @@ + + + + + +主な議案請願等のまとめ | 小平市議・安竹洋平のまとめ + + + + +
メインコンテンツまでスキップ

主な議案請願等のまとめ

+

(作成中です)

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