forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull request project-chip#164: Cherry-Pick V0.4.0 doc update
Merge in WMN_TOOLS/matter from cherry-pick/documentation_update to silabs_1.0 Squashed commit of the following: commit c4da7f93ab80339e39ccab65414d4209f2066ec2 Author: Ezra Hale <ezra.hale@silabs.com> Date: Tue Oct 4 15:52:04 2022 +0000 Pull request #125: V0.4.0 doc update Merge in WMN_TOOLS/matter from v0.4.0_doc_update to silabs Squashed commit of the following: commit 86ee80df8f4fd45e1b651da721e8ed41306e22f4 Author: Ezra Hale <ezra.hale@silabs.com> Date: Tue Oct 4 11:42:39 2022 -0400 closing out the rest of Catherine's comments commit 07e8b9c42662d3251da667ae95df74678f8098d7 Author: Ezra Hale <ezra.hale@silabs.com> Date: Tue Oct 4 09:58:02 2022 -0400 Chip-Tool -> chip-tool commit ce0b943a13143873572e67afe16c01150d883f9d Author: Ezra Hale <ezra.hale@silabs.com> Date: Tue Sep 27 12:18:33 2022 -0400 updated to address Mathieu's issues in the PR ... and 12 more commits
- Loading branch information
1 parent
b45c731
commit 8228315
Showing
24 changed files
with
506 additions
and
326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Silicon Labs Documentation Standards Using Markdown | ||
|
||
## Titles | ||
# This Is a Title | ||
Notice how the main words are capitalized | ||
|
||
## Subsections Look Like This | ||
This is a `##` subsection under a `#` title header. Notice how the words are also capitalized. | ||
|
||
## Lists | ||
|
||
- This is a bulleted list | ||
- Second item in a bulleted list | ||
|
||
1. This is a numbered list | ||
2. Second item in a numbered list | ||
|
||
## Commands | ||
|
||
```shell | ||
$ this is a highlighted command | ||
``` | ||
|
||
```shell | ||
$ if there is a second line it has it's own entry | ||
``` | ||
```shell | ||
$ notice how commands all start with the dollar sign, $, this is to indicate that they are to be used on a command line | ||
``` | ||
## Code | ||
```cpp | ||
This is a code block() { | ||
Not to be confused with a highlighted command as above ^^^ | ||
This should only be used for preformatted code, not for commands. | ||
} | ||
``` | ||
## Notes | ||
> **Note:** This is a note that we want to draw attention to, it is similar to a highlighted command except that it does not generally use `preformatted text`. | ||
## Tables | ||
| col 1 | col 2 | col 3 | | ||
| ----- | ----- | ----- | | ||
| don't do | large tables | they don't | | ||
| format well | or look good | and are | | ||
| difficult | to | maintain | | ||
If you need to do a large table, find some other way to represent the information in .md. You could use HTML but this is also frowned upon for the reason listed below... | ||
## HTML | ||
Try to avoid <br> Using HTML <br> Since it doesn't <br> get picked up <br> by .md translators |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.