Skip to content

Commit 3beac93

Browse files
committed
feat: rename cppdoc to CppDoc and scaffold development docs
1 parent 63edf12 commit 3beac93

File tree

6 files changed

+16
-4
lines changed

6 files changed

+16
-4
lines changed

LICENSE.MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 cppdoc authors
3+
Copyright (c) 2025 CppDoc authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cppdoc
1+
# CppDoc
22

33
An open documentation for the C/C++ programming languages and their standard libraries.
44

astro.config.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import starlightHeadingBadges from "starlight-heading-badges";
1010
export default defineConfig({
1111
integrations: [
1212
starlight({
13-
title: "cppdoc",
13+
title: "CppDoc",
1414
social: [
1515
{
1616
icon: "github",
@@ -35,6 +35,10 @@ export default defineConfig({
3535
label: "C Library Reference",
3636
autogenerate: { directory: "c/library" },
3737
},
38+
{
39+
label: "CppDoc Development Guide",
40+
autogenerate: { directory: "development" },
41+
}
3842
],
3943
locales: {
4044
root: {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
label: CppDoc Development Guide
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: Getting Started
3+
---
4+
5+
**Thanks for your interest in contributing to CppDoc!**
6+
7+
CppDoc is an open documentation for the C/C++ programming languages and their standard libraries.

src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: cppdoc
2+
title: CppDoc
33
# Remove the following line to display the site sidebar on this page.
44
template: splash
55
hero:

0 commit comments

Comments
 (0)