Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
537e9c0
mv: Moved the "Wiki Structure" article under "Basics" as I believe it…
OrsellGit Jan 7, 2026
6cbe4cf
docs/contribute: Added how to properly create articles and how to lin…
OrsellGit Jan 7, 2026
7674920
README: Added note to fork the repo if contributing.
OrsellGit Jan 8, 2026
c068893
fix: Unsure if this done on purpose or is meant for testing, will rev…
OrsellGit Jan 8, 2026
1399398
docs/contribute: Added extra bit to notices examples based on what wa…
OrsellGit Jan 8, 2026
64bbbfe
docs/contribute-feat: Added new article for getting started with the …
OrsellGit Jan 8, 2026
aa3bec0
docs/contribute-feat: Added links to Markdown styling as well as adde…
OrsellGit Jan 8, 2026
e3fb7c1
docs/contribute-feat: Added mentions and links to getting started wit…
OrsellGit Jan 8, 2026
c65ad90
docs/contribute-feat: Added article for create categories for the Wiki.
OrsellGit Jan 8, 2026
0b16a2e
docs/contribute-feat: Added documentation for the `type` parameter fo…
OrsellGit Jan 9, 2026
1cdde39
fix: Bump Wiki software to the right version and fixed broken links
OrsellGit Jan 9, 2026
ade825c
fix: Changed the Test Suite "meta.json" back to "_meta.json"
OrsellGit Jan 12, 2026
b436575
fix: Renamed "adv-getting-started.md" to "getting-started.md"
OrsellGit Jan 12, 2026
714fdb0
docs/contribute: Changed wording of how to replace the `site` submodu…
OrsellGit Jan 12, 2026
05bceec
docs/contribute: Reworked the wording a bit on the making category pa…
OrsellGit Jan 13, 2026
6a7baf3
dumps: Updated Wiki with the latest AngelScript dump
OrsellGit Feb 3, 2026
04752c1
dumps: Updated VScript dump with latest QA build.
OrsellGit Feb 4, 2026
d55bfef
dumps: Updated P2CE CVar dump
OrsellGit Feb 4, 2026
432b432
docs/contribute: Added start of guide to dumping references for the Wiki
OrsellGit Feb 4, 2026
bdf8563
Merge branch 'main' into feat/update-contribute
OrsellGit Feb 6, 2026
bb2abf2
docs/contribute: Added the rest of the information for dumping refere…
OrsellGit Feb 7, 2026
e533828
feat: Created and added a Python script to automate dumping reference…
OrsellGit Feb 7, 2026
ab27e69
dumps: Updated AS, VScript, Material Shader, CVar, and Sound Operator…
OrsellGit Feb 7, 2026
83df612
docs/contribute: Fixed sentence mentioning particles as materials
OrsellGit Feb 7, 2026
37881f1
docs/contribute: Combined a sentence and specified that subtopics exist
OrsellGit Feb 7, 2026
6c9d786
Merge branch 'main' into dumps/new-dump
OrsellGit Feb 7, 2026
3536b4a
Squashed commit of the following:
OrsellGit Feb 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions docs/contribute/basics/creating-editing-articles.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ weight: 10

## Creating An Article

Articles on the Strata Source Wiki consist of Markdown files that work with the [standard set of syntax](https://www.markdownguide.org/basic-syntax/).
Articles on the Strata Source Wiki consist of a mix of Markdown files and autogenerated docs from JSON dumps. The Markdown docs follow mostly a [standard set of syntax](https://www.markdownguide.org/basic-syntax/) with some of [GitHub's Markdown styling formats](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) (Ex. Alerts/Notices).

The Wiki also follows some, but not all, of [GitHub's Markdown styling formats](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) (Ex. Alerts/Notices).

All the Markdown files on the Wiki are inside topics. Topics are the folders that make up certain sections of categories. Example of `Category/Topic/Article`: `Audio/Overview/Sound System`. These Markdown files are placed into where they should displayed in the Wiki.
All the Markdown files on the Wiki are inside topics. Topics are the folders that make up certain sections of categories. Example of `Category/Topic/Article`: `Audio/Overview/Sound System`. The Wiki also supports nesting subtopic folders inside topics. These Markdown files are placed into where they should displayed in the Wiki.

For example, to add a article to the "Overview" topic in the "Panorama" category, all that needs to be done is to make a new Markdown file in the `docs/panorama/overview` folder.

Expand Down
Loading