-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
How to wiki
This guide explains how to contribute to the OrcaSlicer wiki.
OrcaSlicer uses GitHub's wiki feature, which lets users and developers create and edit documentation collaboratively.
We encourage developers and users to contribute by updating existing pages and adding new content. This helps keep the documentation accurate and useful.
When adding new features, consider updating the wiki so users can access the latest guidance.
- Wiki Structure
- Orca to Wiki Redirection
- Formatting and Style
- Images
- Structuring Content
- Commands and Code Blocks
- External Links
Each wiki page is a Markdown file located in the doc
directory of the repository. The wiki is organized into sections that cover different areas of the project.
The Home page is the starting point for the OrcaSlicer wiki. From there you can navigate to sections and topics related to the project.
When you create a new page or section, link it from the Home page under the appropriate category.
The Home page currently organizes content in these top-level entries:
Each section can have multiple pages covering specific topics. For example, the Process Settings section includes pages on quality, support, and others.
GitHub Wiki uses file names as page identifiers. To link to a page, use the file name without the .md
extension. If a file lives in a subdirectory, do not include the subdirectory in the link; link directly to the file name from the Home page.
For example, if you add doc/calibration/flow-rate-calib.md
, link it like this:
[Flow Rate Calibration](flow-rate-calib)
For long pages, include a table of contents at the top to help readers find sections quickly.
- [Wiki Structure](#wiki-structure)
- [Home](#home)
- [Index and Navigation](#index-and-navigation)
- [File Naming and Organization](#file-naming-and-organization)
- [Formatting and Style](#formatting-and-style)
Note
If you're adding a new section, follow the existing structure and make sure it doesn't already fit an existing category. Link it from the Home page accordingly.
When creating new pages, follow these file-naming conventions:
- Use unique file names to avoid conflicts.
- Use descriptive names that reflect the page's content.
- Use kebab-case for filenames (e.g.:
How-to-wiki.md
). - If a page belongs to a section, include a suffix that clarifies it (for example, calibration pages should end with
-calib.md
, e.g.flow-rate-calib.md
). - Place files in the appropriate subdirectory when applicable (e.g.:
doc/calibration/
for calibration-related content).
OrcaSlicer can redirect users from the GUI to the appropriate wiki pages, making it easier to find relevant documentation.
The option-to-wiki mapping is defined in src/slic3r/GUI/Tab.cpp. Any option added with append_single_option_line
can be mapped to a wiki page using a second string argument.
optgroup->append_single_option_line("OPTION_NAME"); // Option without wiki page/redirection
optgroup->append_single_option_line("OPTION_NAME", "WIKI_PAGE"); // Option with wiki page and redirection
You can also point to a specific section within a wiki page by appending a fragment identifier (for example #section-name
).
Example:
optgroup->append_single_option_line("seam_gap","quality_settings_seam"); // Wiki page and redirection
optgroup->append_single_option_line("seam_slope_type", "quality_settings_seam#scarf-joint-seam"); // Wiki page and redirection to `Scarf Joint Seam` section
Follow these style and formatting conventions when contributing to the wiki.
The wiki uses standard Markdown syntax for formatting and aims to maintain a consistent style across all pages. Avoid using raw HTML tags and prefer Markdown formatting instead.
Ensure your indentation is consistent, especially for code blocks and lists.
Refer to the GitHub Markdown Guide for more information on Markdown syntax.
Use GitHub's alert syntax to add inline notes and warnings:
> [!NOTE]
> Useful information that readers should know.
> [!TIP]
> Helpful advice for doing things more easily.
> [!IMPORTANT]
> Key information required to achieve a goal.
> [!WARNING]
> Urgent information to avoid problems.
> [!CAUTION]
> Warnings about risks or negative outcomes.
Note
Refer to the GitHub Alerts documentation for more details.
Images are encouraged to enhance the clarity and quality of the wiki content. They help illustrate concepts, provide examples, and improve readability.
Caution
Do not use images from third-party sources unless you have the proper permissions.
- Use clear, descriptive filenames that reflect the image content.
- For section-specific images, include the section name or initials (for example
pa-[description].png
for Pressure Advance images).
- General images should be placed in the
doc/images/
directory. - Section-specific images should be stored in their corresponding subdirectories (e.g.,
doc/images/calibration/
for calibration content).
Tip
You can use \resources\images
images used in the GUI.
Always use raw GitHub URLs for image links to ensure correct display:
Format = 
-
Base URL:
https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/
-
Raw tag:
?raw=true
-
For an image in
doc/images/
namedcalibration.png
:
-
For an image in a subdirectory like
doc/images/GUI/combobox.png
:
Important
New or moved images may not appear in previews until the pull request is merged. Double-check paths and update links if you move files.
- Relative paths
- GitHub Assets/user-content/user-images URLs
- External image links from temporary or unreliable hosts
- Images containing personal or sensitive information
- Using images for content that can be expressed in text, such as equations or code—use Markdown syntax or Mermaid/Math formatting instead.
Note
When contributing section-specific images, follow the naming conventions and directory structure.
Avoid the resize of images and let the Wiki handle it automatically.
If resizing is necessary (e.g., for thumbnails), use the following syntax:
HTML Format = <img alt="
+ filename + "
+ src="
+ Base URL + filename.extension + Raw tag + size limit.
Example:
<img alt="IS_damp_marlin_print_measure" src="https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_damp_marlin_print_measure.jpg?raw=true" height="200">
To ensure clarity:
- Crop images to focus on relevant areas.
- Use simple annotations (arrows, circles, rectangles) to highlight important parts without overloading the image.
- JPG: Suitable for photographs. Avoid for images with text or fine detail due to compression artifacts.
- PNG: Ideal for screenshots or images with transparency. Ensure sufficient contrast for light and dark modes.
- SVG: Preferred when possible. SVGs support theme adaptation (light/dark mode), making them ideal for icons and diagrams.
Each page should have a clear objective. After a short introduction, choose a structure that fits the content:
- Step-by-step guides: Use for sequential procedures (for example calibration).
- GUI-based reference: Describe settings following OrcaSlicer's UI when sequence isn't required.
Example: explain Layer Height before Initial Layer Height, since the former is global and the latter only applies to the first layer.
When adding commands or code blocks please use the Code Block with Syntax Highlighting feature of Markdown.
- Use triple backticks (```) to enclose code blocks.
- Specify the language for proper highlighting and readability.
```json
{
"key": "value"
}
```
{
"key": "value"
}
Be careful when linking to external resources.
Ensure links are relevant and reliable and cite papers or articles when appropriate.