forked from ResetPower/OpenCAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ResetPower#1 from ResetPower/dev
Add Introduction in the Documents
- Loading branch information
Showing
9 changed files
with
58 additions
and
162 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module.exports = { | ||
tabWidth: 2, | ||
useTabs: false, | ||
quoteProps: "as-needed", | ||
semi: true, | ||
singleQuote: false, | ||
bracketSpacing: true, | ||
endOfLine: "auto", | ||
trailingComma: "es5", | ||
}; |
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,28 +1,26 @@ | ||
import { defineConfig } from 'vitepress' | ||
import { defineConfig } from "vitepress"; | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "OpenCAS", | ||
description: "A VitePress Site", | ||
description: "An Open-Source Computer Algebra System", | ||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
nav: [ | ||
{ text: 'Home', link: '/' }, | ||
{ text: 'Examples', link: '/markdown-examples' } | ||
{ text: "Home", link: "/" }, | ||
{ text: "Documents", link: "/what-is-opencas" }, | ||
], | ||
|
||
sidebar: [ | ||
{ | ||
text: 'Examples', | ||
text: "Introduction", | ||
items: [ | ||
{ text: 'Markdown Examples', link: '/markdown-examples' }, | ||
{ text: 'Runtime API Examples', link: '/api-examples' } | ||
] | ||
} | ||
{ text: "What is OpenCAS?", link: "/what-is-opencas" }, | ||
{ text: "Quickstart", link: "/quickstart" }, | ||
], | ||
}, | ||
], | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/ResetPower/OpenCAS' } | ||
] | ||
} | ||
}) | ||
{ icon: "github", link: "https://github.com/ResetPower/OpenCAS" }, | ||
], | ||
}, | ||
}); |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Quickstart | ||
|
||
This project currently remains in conception and is not carried out on code. You can contact to us if you are interested in this project. The guidelines for contribution will be available on this website later. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# What is OpenCAS? | ||
|
||
OpenCAS is an open-source computer algebra system (CAS) designed for symbolic operations in mathematics. The project is started in Jul 2024 and is planned for an extended duration of development. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
"docs:preview": "vitepress preview docs" | ||
}, | ||
"devDependencies": { | ||
"prettier": "^3.3.3", | ||
"vitepress": "^1.3.1" | ||
} | ||
} |