Contribution Guide
You can join our editorial team to submit contributions, or directly submit a PR to this project to contribute content! Before getting started, we recommend reading the Maintenance Roadmap and TODO Summary first, so you can direct your contributions to high-priority gaps.
Acknowledgments
Loading contributors...
Minimal Markdown Quickstart Guide
If you don't want to read a long article, you can scroll to the bottom of this page and use the WYSIWYG editor to try out Markdown syntax and learn by doing!
Introduction
As a markup language, Markdown's learning curve is actually not much steeper than Word's. Once you're familiar with a few key symbols, you can start editing Markdown documents right away.
We only use a subset of the syntax described below — in fact, this is a very small subset of Markdown syntax that meets the editing and formatting needs of this manual:
- H1 / H2 / H3 headings
- Body text
- Bold
- Italic
- Hyperlinks
- Basic tables
- Images
- Math formulas
Below we'll demonstrate some simple examples:
Multi-level Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4Body Text
Text without any special formatting symbols is body text. If body text contains special formatting symbols like #, $, ^, *, etc., add a backslash \ before them.
Example:
This is normal body text, using \*asterisks\* won't be parsed as italicResult:
This is normal body text, using *asterisks* won't be parsed as italic
Bold
Wrap text with two asterisks:
**This is bold text**Result: This is bold text
Italic
Wrap text with one asterisk:
_This is italic text_Result: This is italic text
Hyperlinks
Put text in square brackets and the URL in parentheses:
[SCUT Manual Website](https://manual.华南原神大学.com)Result: SCUT Manual Website
Tables
Separate columns with pipes, and define the header with hyphens on the second row:
| Course | Credits |
| --------------------------- | ------- |
| Calculus (II) (Part 1) | 5 |
| Engineering Math Analysis 2 | 5 |
| Engineering Math Analysis 2 | 5 |Result:
| Course | Credits |
|---|---|
| Calculus (II) (Part 1) | 5 |
| Engineering Math Analysis 2 | 5 |
| Engineering Math Analysis 2 | 5 |
Tip: The number of hyphens
-in the second row is arbitrary; three is just for aesthetics.
Blockquotes
A less-than sign (half-width) followed by a space, then the quoted content.
Syntax:
> This is quoted content
Result:
This is quoted content
Images
Start with an exclamation mark, put alt text in square brackets (displayed when the image fails to load, sometimes interpreted as a caption), and the image path in parentheses.
Syntax:
Result:

Math Formulas (Advanced)
Wrap LaTeX formulas with dollar signs:
If you're not familiar with LaTeX syntax, you can use the visual editor Online LaTeX Equation Editor to compose formulas, then click “Output Code > LaTeX” below the output area to copy the LaTeX code, and paste it between the double dollar signs.
(Single dollar sign) Inline formula: $ E=mc^2 $
(Double dollar sign) Display formula block:
$$
\sum_{i=1}^n i = \frac{n(n+1)}{2}
$$Result:
Inline formula: $ E=mc^2 $
Display formula block:
Closing Remarks
Mastering the basic syntax above will let you handle 90% of your document formatting needs. Start your writing journey now!
Start Markdown Now
TODO: Add documentation compilation guidelines (file naming, source attribution, external link standards, time-sensitive information markers, translation sync rules, writing conventions for citing official information).
TODO: Establish an annual update process (onboarding, campus buses, maps, major transfers, university hospital, nearby info, and other time-sensitive pages should be reviewed at least once per academic year).
