-
-
Notifications
You must be signed in to change notification settings - Fork 256
docs: add starlight #1859
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
Merged
uncenter
merged 60 commits into
catppuccin:main
from
trueberryless:feature/starlight-docs
Aug 31, 2025
Merged
docs: add starlight #1859
Changes from all commits
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
aa04c4f
feat: migrate docs to Starlight
trueberryless 344e88d
fix: switch to pnpm because deno Astro support not great
trueberryless af55f53
chore: add support for custom heading ids
trueberryless 46c588f
chore: clean up styles, adopt to me more like whiskers
trueberryless 1325b56
chore: improve description and tagline
trueberryless 6144ecd
chore: remove contributor list
trueberryless efbcaf3
chore: make structure more similar to whiskers
trueberryless a718851
chore: fix index image
trueberryless 79a2f62
chore: add descriptions to all pages
trueberryless 287837a
Update docs/astro.config.mjs
trueberryless c5af1b2
Update docs/src/content/docs/getting-started/USAGE.md
trueberryless ead71e8
Update docs/src/content/docs/getting-started/FAQ.md
trueberryless 24d0b56
Update docs/src/content/docs/userstyle-creation/tips-and-tricks/see-c…
trueberryless b1a8abd
Update docs/src/content/docs/index.mdx
trueberryless 6998bac
Update docs/src/content/docs/index.mdx
trueberryless d083c55
Update docs/src/content/docs/guides/userstylesyml.md
trueberryless e72b5bd
chore: remove website deployment and create docs workflow
trueberryless 28d4dfa
revert: images back to webp format
trueberryless 9ce18fa
fix: invalid slug in sidebar
trueberryless 569d120
refactor: rename to hot-reloading
trueberryless 18d994b
chore: create CNAME file for custom domain
trueberryless 1723f4c
Update docs/src/content/docs/userstyle-creation/tips-and-tricks/hot-r…
trueberryless d0a717d
Update docs/src/content/docs/userstyle-creation/tips-and-tricks/hot-r…
trueberryless 471e1d0
Update docs/src/content/docs/userstyle-creation/tips-and-tricks/hot-r…
trueberryless 56a793b
docs(tutorials/writing-a-userstyle.md): add alt text to images
WalkQuackBack 9d7b5d4
Update docs/src/content/docs/userstyle-creation/tutorials/writing-a-u…
trueberryless fc486fd
Update .github/workflows/docs.yml
trueberryless 818b086
fix: overview problem
trueberryless c40cf66
fix: all internal links now valid (exclude autogenerated)
trueberryless a0ff817
feat: ports integration
trueberryless e5c0e51
feat: add mermaid integration
trueberryless 0f9e44f
feat: card implementation
trueberryless b686b5e
feat: use category data and AnchorHeading Starlight component
trueberryless d01cc85
Update docs/src/content/docs/guides/CONTRIBUTING.md
trueberryless cfa8e23
Update docs/src/pages/ports/[slug].astro
trueberryless 78938e7
Update docs/src/pages/ports/[slug].astro
trueberryless 9b6e036
feat(lib): add lib.less standard library (#1843)
uncenter 9b6efd7
fix(twitch): dashboard elements (#1855)
mxgic1337 39b7592
chore: bump changed userstyles
github-actions[bot] d2b671f
feat: add symlink to access /lib/lib.less on website
trueberryless 6008526
Merge branch 'main' into feature/starlight-docs
trueberryless f39d484
fix: use slug for heading ids
trueberryless c30a922
chore(pnpm): allow build scripts
uncenter d25ae92
docs(README.md): direct users to website
uncenter fe0f6c0
docs: remove per userstyle pages, simplify types and headings
uncenter a17f0c2
docs: move userstyles list to introduction as simple list without car…
uncenter 1cd8912
refactor: type import
uncenter ad21eae
Merge pull request #1 from catppuccin/docs/starlight-simple-userstyle…
trueberryless 927a7d6
fix(scripts/generate): update userstyle readme template to link to we…
uncenter 81315f3
refactor(docs): move mdx imports
uncenter 6005075
docs: remove starlight links validator exclusion
uncenter 3ff9a67
docs: description wording
uncenter 6274d97
docs: restructure contributing, new reference section
uncenter 3de1421
refactor: please the linter
uncenter 31f0d16
docs: remove bluesky social link
uncenter 0005cae
docs: rename "userstyle creation" to "creating userstyles"
uncenter 98f9c24
docs: contributing/guides/index description
uncenter 6f1d5ca
docs: use starlight steps component for lists
uncenter 0feb086
refactor(userstylesyml): add steps component
sgoudham b0415bf
Update README.md
sgoudham File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,35 @@ | ||
| name: Deploy Docs to GH Pages | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| paths: | ||
| - 'docs/**' | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pages: write | ||
| id-token: write | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - name: Build & Upload Site | ||
| uses: withastro/action@v4 | ||
| with: | ||
| path: ./docs | ||
| package-manager: [email protected] | ||
|
|
||
| deploy: | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
| steps: | ||
| - name: Deploy to GitHub Pages | ||
| id: deployment | ||
| uses: actions/deploy-pages@v4 | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,21 @@ | ||
| # build output | ||
| dist/ | ||
| # generated types | ||
| .astro/ | ||
|
|
||
| # dependencies | ||
| node_modules/ | ||
|
|
||
| # logs | ||
| npm-debug.log* | ||
| yarn-debug.log* | ||
| yarn-error.log* | ||
| pnpm-debug.log* | ||
|
|
||
|
|
||
| # environment variables | ||
| .env | ||
| .env.production | ||
|
|
||
| # macOS-specific files | ||
| .DS_Store |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.