-
Notifications
You must be signed in to change notification settings - Fork 6
git history #233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
git history #233
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,4 +16,4 @@ EasyHybrid = {path = ".."} | |
|
|
||
| [compat] | ||
| Documenter = "1" | ||
| DocumenterVitepress = "0.3" | ||
| DocumenterVitepress = "0.3.2" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,22 +1,23 @@ | ||
| { | ||
| "devDependencies": { | ||
| "@types/d3-format": "^3.0.4", | ||
| "@types/node": "^22.13.9", | ||
| "@types/markdown-it-footnote": "^3.0.4" | ||
| "@types/markdown-it-footnote": "^3.0.4", | ||
| "@types/node": "^22.13.9" | ||
| }, | ||
| "scripts": { | ||
| "docs:dev": "vitepress dev build/.documenter", | ||
| "docs:build": "vitepress build build/.documenter", | ||
| "docs:preview": "vitepress preview build/.documenter" | ||
| }, | ||
| "dependencies": { | ||
| "@mdit/plugin-mathjax": "^0.25.0", | ||
| "@mdit/plugin-tex": "^0.23.1", | ||
| "@nolebase/vitepress-plugin-enhanced-readabilities": "^2.18.2", | ||
| "@nolebase/vitepress-plugin-git-changelog": "^2.18.2", | ||
| "d3-format": "^3.1.0", | ||
| "markdown-it": "^14.1.0", | ||
| "markdown-it-footnote": "^4.0.0", | ||
| "vitepress": "^1.6.4", | ||
| "@mdit/plugin-mathjax": "^0.25.0", | ||
| "@mdit/plugin-tex": "^0.23.1", | ||
| "d3-format": "^3.1.0", | ||
| "vitepress-plugin-tabs": "^0.6.0" | ||
| } | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -12,6 +12,8 @@ import { | |||||||||||||||||||||||||
| NolebaseEnhancedReadabilitiesScreenMenu, | ||||||||||||||||||||||||||
| } from '@nolebase/vitepress-plugin-enhanced-readabilities/client' | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| import {NolebaseGitChangelogPlugin} from "@nolebase/vitepress-plugin-git-changelog/client"; | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| import VersionPicker from "@/VersionPicker.vue" | ||||||||||||||||||||||||||
| import StarUs from '@/StarUs.vue' | ||||||||||||||||||||||||||
| import AuthorBadge from '@/AuthorBadge.vue' | ||||||||||||||||||||||||||
|
|
@@ -23,6 +25,7 @@ import LayoutContainer from '@/LayoutContainer.vue' | |||||||||||||||||||||||||
| import { enhanceAppWithTabs } from 'vitepress-plugin-tabs/client' | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| import '@nolebase/vitepress-plugin-enhanced-readabilities/client/style.css' | ||||||||||||||||||||||||||
| import "@nolebase/vitepress-plugin-git-changelog/client/style.css"; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
| import './style.css' | ||||||||||||||||||||||||||
| import './docstrings.css' | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
|
|
@@ -45,8 +48,14 @@ export const Theme: ThemeConfig = { | |||||||||||||||||||||||||
| enhanceApp({ app, router, siteData }) { | ||||||||||||||||||||||||||
| enhanceAppWithTabs(app); | ||||||||||||||||||||||||||
| app.component('VersionPicker', VersionPicker); | ||||||||||||||||||||||||||
| app.component('AuthorBadge', AuthorBadge) | ||||||||||||||||||||||||||
| app.component('Authors', Authors) | ||||||||||||||||||||||||||
| app.component('AuthorBadge', AuthorBadge); | ||||||||||||||||||||||||||
| app.component('Authors', Authors); | ||||||||||||||||||||||||||
| app.use(NolebaseGitChangelogPlugin, { | ||||||||||||||||||||||||||
| displayAuthorsInsideCommitLine: true, | ||||||||||||||||||||||||||
| hideChangelogHeader: true, | ||||||||||||||||||||||||||
| hideSortBy: true, | ||||||||||||||||||||||||||
| hideContributorsHeader: true | ||||||||||||||||||||||||||
| }); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
| app.use(NolebaseGitChangelogPlugin, { | |
| displayAuthorsInsideCommitLine: true, | |
| hideChangelogHeader: true, | |
| hideSortBy: true, | |
| hideContributorsHeader: true | |
| }); | |
| app.use(NolebaseGitChangelogPlugin, { | |
| displayAuthorsInsideCommitLine: true, | |
| hideChangelogHeader: true, | |
| hideSortBy: true, | |
| hideContributorsHeader: true | |
| }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency with the prevailing import style in this file, it's better to use single quotes and omit the trailing semicolon.