temp pre-repo wiki
This commit is contained in:
parent
22ba0c7cf6
commit
580086b2cc
3 changed files with 116 additions and 0 deletions
44
InvestWiki/wiki/ex/next/en.md
Normal file
44
InvestWiki/wiki/ex/next/en.md
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
# Next.js
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
|
||||||
|
Visit <a aria-label="next.js learn" href="https://nextjs.org/learn">https://nextjs.org/learn</a> to get started with Next.js.
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
Visit [https://nextjs.org/docs](https://nextjs.org/docs) to view the full documentation.
|
||||||
|
|
||||||
|
## Who is using Next.js?
|
||||||
|
|
||||||
|
Next.js is used by the world's leading companies. Check out the [Next.js Showcase](https://nextjs.org/showcase) to learn more.
|
||||||
|
|
||||||
|
## Community
|
||||||
|
|
||||||
|
The Next.js community can be found on [GitHub Discussions](https://github.com/vercel/next.js/discussions), where you can ask questions, voice ideas, and share your projects.
|
||||||
|
|
||||||
|
To chat with other community members you can join the [Next.js Discord](https://nextjs.org/discord).
|
||||||
|
|
||||||
|
Our [Code of Conduct](https://github.com/vercel/next.js/blob/canary/CODE_OF_CONDUCT.md) applies to all Next.js community channels.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Please see our [contributing.md](/contributing.md).
|
||||||
|
|
||||||
|
### Good First Issues
|
||||||
|
|
||||||
|
We have a list of [good first issues](https://github.com/vercel/next.js/labels/good%20first%20issue) that contain bugs that have a relatively limited scope. This is a great place to get started, gain experience, and get familiar with our contribution process.
|
||||||
|
|
||||||
|
## Authors
|
||||||
|
|
||||||
|
- Tim Neutkens ([@timneutkens](https://twitter.com/timneutkens))
|
||||||
|
- Naoyuki Kanezawa ([@nkzawa](https://twitter.com/nkzawa))
|
||||||
|
- Guillermo Rauch ([@rauchg](https://twitter.com/rauchg))
|
||||||
|
- Arunoda Susiripala ([@arunoda](https://twitter.com/arunoda))
|
||||||
|
- Tony Kovanen ([@tonykovanen](https://twitter.com/tonykovanen))
|
||||||
|
- Dan Zajdband ([@impronunciable](https://twitter.com/impronunciable))
|
||||||
|
|
||||||
|
## Security
|
||||||
|
|
||||||
|
If you believe you have found a security vulnerability in Next.js, we encourage you to responsibly disclose this and not open a public issue. We will investigate all legitimate reports. Email `security@vercel.com` to disclose any security vulnerabilities.
|
||||||
|
|
||||||
|
https://vercel.com/security
|
59
InvestWiki/wiki/home/en.md
Normal file
59
InvestWiki/wiki/home/en.md
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
---
|
||||||
|
layout: "home"
|
||||||
|
title: "some data"
|
||||||
|
---
|
||||||
|
|
||||||
|
# toffee wiki
|
||||||
|
|
||||||
|
Official WIP wiki!!
|
||||||
|
|
||||||
|
## Stuffs
|
||||||
|
|
||||||
|
Some wiki stuff will go here
|
||||||
|
|
||||||
|
Check out an actual example page [over here](/wiki/en/ex/next/)
|
||||||
|
|
||||||
|
多[言語](/wiki/ja/)化!?
|
||||||
|
|
||||||
|
## Markdown Support
|
||||||
|
|
||||||
|
```jsx
|
||||||
|
export default function RenderMarkdown({ children }: RenderMarkdownProps) {
|
||||||
|
return (
|
||||||
|
<ReactMarkdown
|
||||||
|
remarkPlugins={[remarkGfm]}
|
||||||
|
rehypePlugins={[rehypeHighlight, rehypeSlug]}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</ReactMarkdown>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## GFM
|
||||||
|
|
||||||
|
### Autolink literals
|
||||||
|
|
||||||
|
www.example.com, <https://example.com>, and contact@example.com.
|
||||||
|
|
||||||
|
### Footnote
|
||||||
|
|
||||||
|
A note[^1]
|
||||||
|
|
||||||
|
[^1]: Big note.
|
||||||
|
|
||||||
|
### Strikethrough
|
||||||
|
|
||||||
|
~one~ or ~~two~~ tildes.
|
||||||
|
|
||||||
|
### Table
|
||||||
|
|
||||||
|
| Syntax | Description |
|
||||||
|
| --------- | ----------- |
|
||||||
|
| Header | Title |
|
||||||
|
| Paragraph | Text |
|
||||||
|
|
||||||
|
### Tasklist
|
||||||
|
|
||||||
|
- [ ] to do
|
||||||
|
- [x] done
|
13
InvestWiki/wiki/home/ja.md
Normal file
13
InvestWiki/wiki/home/ja.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
layout: "home"
|
||||||
|
---
|
||||||
|
|
||||||
|
# ホームページ :)
|
||||||
|
|
||||||
|
## あ
|
||||||
|
|
||||||
|
ここで何かを作るには、日本語がよくわからないのですが...
|
||||||
|
|
||||||
|
:D
|
||||||
|
|
||||||
|
[英語](/wiki/en/)
|
Loading…
Add table
Reference in a new issue