-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
235 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,87 @@ | ||
import { defineConfig } from 'vitepress' | ||
import { defineConfig } from "vitepress"; | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "LINEJS Documentation", | ||
titleTemplate: ":title | LINEJS", | ||
description: "Documentation of LINEJS | LINEJS is a JavaScript library for LINE SelfBot.", | ||
sitemap: { | ||
hostname: 'https://linejs.evex.land', | ||
}, | ||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
siteTitle: 'LINEJS Docs', | ||
search: { | ||
provider: 'local' | ||
}, | ||
title: "LINEJS Documentation", | ||
titleTemplate: ":title | LINEJS", | ||
description: | ||
"Documentation of LINEJS | LINEJS is a JavaScript library for LINE SelfBot.", | ||
sitemap: { | ||
hostname: "https://linejs.evex.land", | ||
}, | ||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
siteTitle: "LINEJS Docs", | ||
search: { | ||
provider: "local", | ||
}, | ||
|
||
nav: [ | ||
{ text: 'Home', link: '/' }, | ||
{ text: 'Docs', link: '/docs/start' }, | ||
{ text: 'Examples', link: 'https://github.com/evex-dev/linejs' } | ||
], | ||
nav: [ | ||
{ text: "Home", link: "/" }, | ||
{ text: "Docs", link: "/docs/start" }, | ||
{ text: "Examples", link: "https://github.com/evex-dev/linejs" }, | ||
], | ||
|
||
sidebar: [ | ||
{ | ||
text: 'Docs', | ||
items: [ | ||
{ text: 'Start', link: '/docs/start' }, | ||
{ text: 'Start 2', link: '/docs/start-2' }, | ||
{ text: 'Message Event', link: '/docs/message-event' }, | ||
] | ||
}, | ||
{ | ||
text: 'Guides', | ||
items: [ | ||
{ text: 'Authors', link: '/docs/authors' }, | ||
{ text: 'Question', link: '/docs/question' } | ||
] | ||
} | ||
], | ||
sidebar: [ | ||
{ | ||
text: "Docs", | ||
items: [ | ||
{ text: "Start", link: "/docs/start" }, | ||
{ text: "Start 2", link: "/docs/start-2" }, | ||
{ text: "Message Event", link: "/docs/message-event" }, | ||
], | ||
}, | ||
{ | ||
text: "Guides", | ||
items: [ | ||
{ text: "Authors", link: "/docs/authors" }, | ||
{ text: "Question", link: "/docs/question" }, | ||
], | ||
}, | ||
], | ||
|
||
editLink: { | ||
pattern: 'https://github.com/evex-dev/linejs/edit/main/docs/:path', | ||
text: 'Edit this page on GitHub', | ||
}, | ||
editLink: { | ||
pattern: "https://github.com/evex-dev/linejs/edit/main/docs/:path", | ||
text: "Edit this page on GitHub", | ||
}, | ||
|
||
footer: { | ||
message: 'Released under the MIT License.', | ||
copyright: | ||
'Copyright © '+ new Date().getFullYear() + '-present Evex Developers.', | ||
}, | ||
footer: { | ||
message: "Released under the MIT License.", | ||
copyright: "Copyright © " + new Date().getFullYear() + | ||
"-present Evex Developers.", | ||
}, | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/evex-dev/linejs' }, | ||
{ icon: 'discord', link: 'https://evex.land' } | ||
] | ||
}, | ||
head: [ | ||
['link', { rel: 'icon shortcut', href: '/favicon.png' }], | ||
['link', { rel: 'apple-touch-icon', href: '/favicon.png' }], | ||
['meta', { name: 'og:title', content: 'LINEJS Documentation' }], | ||
['meta', { name: 'og:image', content: 'https://linejs.evex.land/favicon.png' }], | ||
['meta', { name: 'og:description', content: 'LINEJS Documentation | LINEJS is a JavaScript library for LINE SelfBot.' }], | ||
['meta', { name: 'og:url', content: 'https://linejs.evex.land' }], | ||
['meta', { name: 'twitter:title', content: 'LINEJS Documentation' }], | ||
['meta', { name: 'twitter:description', content: 'LINEJS Documentation | LINEJS is a JavaScript library for LINE SelfBot.' }], | ||
['meta', { name: 'twitter:card', content: 'summary_large_image' }], | ||
['meta', { name: 'twitter:site', content: '@amex2189' }], | ||
['meta', { name: 'twitter:creator', content: '@amex2189' }], | ||
['meta', { name: 'twitter:image', content: 'https://linejs.evex.land/favicon.png' }], | ||
], | ||
}) | ||
socialLinks: [ | ||
{ icon: "github", link: "https://github.com/evex-dev/linejs" }, | ||
{ icon: "discord", link: "https://evex.land" }, | ||
], | ||
}, | ||
head: [ | ||
["link", { rel: "icon shortcut", href: "/favicon.png" }], | ||
["link", { rel: "apple-touch-icon", href: "/favicon.png" }], | ||
["meta", { name: "og:title", content: "LINEJS Documentation" }], | ||
["meta", { | ||
name: "og:image", | ||
content: "https://linejs.evex.land/favicon.png", | ||
}], | ||
["meta", { | ||
name: "og:description", | ||
content: | ||
"LINEJS Documentation | LINEJS is a JavaScript library for LINE SelfBot.", | ||
}], | ||
["meta", { name: "og:url", content: "https://linejs.evex.land" }], | ||
["meta", { name: "twitter:title", content: "LINEJS Documentation" }], | ||
["meta", { | ||
name: "twitter:description", | ||
content: | ||
"LINEJS Documentation | LINEJS is a JavaScript library for LINE SelfBot.", | ||
}], | ||
["meta", { name: "twitter:card", content: "summary_large_image" }], | ||
["meta", { name: "twitter:site", content: "@amex2189" }], | ||
["meta", { name: "twitter:creator", content: "@amex2189" }], | ||
["meta", { | ||
name: "twitter:image", | ||
content: "https://linejs.evex.land/favicon.png", | ||
}], | ||
], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
// https://vitepress.dev/guide/custom-theme | ||
import { h } from 'vue' | ||
import type { Theme } from 'vitepress' | ||
import DefaultTheme from 'vitepress/theme' | ||
import './style.css' | ||
import { h } from "vue"; | ||
import type { Theme } from "vitepress"; | ||
import DefaultTheme from "vitepress/theme"; | ||
import "./style.css"; | ||
|
||
export default { | ||
extends: DefaultTheme, | ||
Layout: () => { | ||
return h(DefaultTheme.Layout, null, { | ||
// https://vitepress.dev/guide/extending-default-theme#layout-slots | ||
}) | ||
}, | ||
enhanceApp({ app, router, siteData }) { | ||
|
||
} | ||
} satisfies Theme | ||
extends: DefaultTheme, | ||
Layout: () => { | ||
return h(DefaultTheme.Layout, null, { | ||
// https://vitepress.dev/guide/extending-default-theme#layout-slots | ||
}); | ||
}, | ||
enhanceApp({ app, router, siteData }) { | ||
}, | ||
} satisfies Theme; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"tasks": { | ||
"vp": "deno run -A npm:vitepress" | ||
}, | ||
"unstable": [ | ||
"byonm" | ||
] | ||
} | ||
"tasks": { | ||
"vp": "deno run -A npm:vitepress" | ||
}, | ||
"unstable": [ | ||
"byonm" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
# Authors | ||
|
||
Maintainers of **LINEJS** | ||
|
||
## Maintainers | ||
|
||
- Owner & Developer [Piloking](https://github.com/piloking) | ||
- Developer [EdamAme-x](https://github.com/EdamAme-x) | ||
|
||
## Sub-maintainers | ||
|
||
- Developer [MocA-Love](https://github.com/MocA-Love) | ||
- Developer [Hafusun](https://github.com/hafusun) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Receive Message Event | ||
Coming soon... | ||
|
||
Coming soon... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Question | ||
|
||
This is our server. Feel free to ask questions! | ||
|
||
[https://discord.gg/evex](https://discord.gg/evex) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.