|
Before Width: | Height: | Size: 431 KiB After Width: | Height: | Size: 431 KiB |
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 138 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
@ -1,29 +1,87 @@
@@ -1,29 +1,87 @@
|
||||
#Table |
||||
## Basic Table |
||||
|
||||
| Command | Description | |
||||
| --- | --- | |
||||
| git status | List all new or modified files | |
||||
| git diff | Show file differences that haven't been staged | |
||||
|
||||
``````bash |
||||
| Command | Description | |
||||
| --- | --- | |
||||
| git status | List all new or modified files | |
||||
| git diff | Show file differences that haven't been staged | |
||||
|
||||
`````` |
||||
|
||||
| Command | Description | |
||||
| --- | --- | |
||||
| `git status` | List all *new or modified* files | |
||||
| `git diff` | Show file differences that **haven't been** staged | |
||||
|
||||
``````bash |
||||
| Command | Description | |
||||
| --- | --- | |
||||
| `git status` | List all *new or modified* files | |
||||
| `git diff` | Show file differences that **haven't been** staged | |
||||
|
||||
`````` |
||||
|
||||
| Left-aligned | Center-aligned | Right-aligned | |
||||
| :--- | :---: | ---: | |
||||
| git status | git status | git status | |
||||
| git diff | git diff | git diff | |
||||
|
||||
``````bash |
||||
| Left-aligned | Center-aligned | Right-aligned | |
||||
| :--- | :---: | ---: | |
||||
| git status | git status | git status | |
||||
| git diff | git diff | git diff | |
||||
|
||||
`````` |
||||
|
||||
| Name | Character | |
||||
| --- | --- | |
||||
| Backtick | ` | |
||||
| Pipe | \| | |
||||
|
||||
``````bash |
||||
| Name | Character | |
||||
| --- | --- | |
||||
| Backtick | ` | |
||||
| Pipe | \| | |
||||
`````` |
||||
## write lists inside a markdown table |
||||
|
||||
| Tables | Are | Cool | |
||||
| ------------- |:-------------:| -----:| |
||||
| col 3 is | right-aligned | $1600 | |
||||
| col 2 is | centered | $12 | |
||||
| zebra stripes | are neat | $1 | |
||||
| <ul><li>item1</li><li>item2</li></ul>| See the list | from the first column| |
||||
|
||||
``````bash |
||||
| Tables | Are | Cool | |
||||
| ------------- |:-------------:| -----:| |
||||
| col 3 is | right-aligned | $1600 | |
||||
| col 2 is | centered | $12 | |
||||
| zebra stripes | are neat | $1 | |
||||
| <ul><li>item1</li><li>item2</li></ul>| See the list | from the first column| |
||||
`````` |
||||
|
||||
|Component |Details| |
||||
|------|------| |
||||
|Values|This is Line 1 <br><br>This is Line 2<br><br>This is Line 3<br>This is Line 4<br>This is Line 5<br>This is Line 6<br>| |
||||
|
||||
``````bash |
||||
|Component |Details| |
||||
|------|------| |
||||
|Values|This is Line 1 <br><br>This is Line 2<br><br>This is Line 3<br>This is Line 4<br>This is Line 5<br>This is Line 6<br>| |
||||
`````` |
||||
|
||||
# ref |
||||
# Refrensi |
||||
|
||||
- [docs.github.com](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables): Organizing information with tables |
||||
|
||||
- [stackoverflow.com](https://stackoverflow.com/questions/19950648/how-to-write-lists-inside-a-markdown-table): How to write lists inside a markdown table? |
||||
|
||||
- [stackoverflow.com](https://stackoverflow.com/questions/71232978/tfs-is-not-formatting-line-break-correctly-in-markdown-table): TFS is not formatting line break correctly in Markdown table |
||||