docs/README.md
Thank you very much for contributing to StarRocks documentation! Your help is important to help improve the docs!
Before contributing, please read this article carefully to quickly understand the tips, writing process, and documentation templates.
sidebars.json file of the docs/docusaurus folder. The path to your topic must be a relative path from the docs folder. This sidebars.json file will eventually be rendered as the side navigation bar for documentation on our official website. If you are not sure how to edit this file, you can leave this work to the documentation team..[test md](./data_source/catalog/hive_catalog.md). For external links, the format must be [link text](link URL).sql.Writing phase: Write the topic (in Markdown) according to templates, and add the topic's index to the sidebars.json file if the topic is newly added.
- Because the documentation is written in Markdown, we recommend that you use markdown-lint to check whether the documentation conforms to the Markdown syntax.
- When adding the topic index, please pay attention to its category in the
sidebars.jsonfile. For example, the Stream Load topic belongs to the Loading chapter.
Submission phase: Create a pull request to submit the documentation changes to our documentation repository on GitHub, English documentation is in the docs/en folder of the StarRocks repository and Chinese documentation is in the docs/zh folder.
Note
All commits in your PR should be signed. To sign a commit you can add the
-sargument. For example:
commit -s -m "Update the MV doc"
Lists of settings
Long lists of settings like this do not index well in search, and the reader will not find the information even when they type in the exact name of a setting:
- `setting_name_foo`
Details for foo
- `setting_name_bar`
Details for bar
...
Instead, use a section heading (e.g., ###) for the setting name and remove the indent for the text:
### `setting_name_foo`
Details for foo
### `setting_name_bar`
Details for bar
...
| Search results with a long list: | Search results with H3 headings |
|---|---|
Review phase
The review phase includes automatic checks and manual review.