« Typora » : différence entre les versions
Apparence
Ligne 73 : | Ligne 73 : | ||
cond(yes)->e | cond(yes)->e | ||
cond(no)->op | cond(no)->op | ||
``` | |||
</kode> | |||
=== Mermaid === | |||
<kode lang='md'> | |||
```mermaid | |||
graph LR | |||
A[Hard edge] -->B(Round edge) | |||
B --> C{Decision} | |||
C -->|One| D[Result one] | |||
C -->|Two| E[Result two] | |||
``` | ``` | ||
</kode> | </kode> |
Version du 10 janvier 2022 à 16:37
Liens
Raccourcis clavier
Ctrl + Shift + V | Paste As Plain Text |
Ctrl + 1 | Heading 1 |
Ctrl + Shift + K | Code Fences |
Ctrl + Shift + ` | Code |
Ctrl + K | Hyperlink |
Ctrl + \ | Clear Format |
%AppData%\Typora\conf\conf.user.json |
"keyBinding": {
"Always on Top": "Ctrl+Shift+P",
"Code": "Alt+C"
},
|
Extended syntax
==highlight== H~2~O x^2^ Ligne: --- |
Images

<img src="folder.assets/image-name.png" style="zoom:150%" />
|
Table
| Header colonne 1 | Header colonne 2 | |
Ctrl + T | créer une nouvelle table |
Ctrl + Enter | ajouter une nouvelle ligne |
Ctrl + Shift + Backspace | supprimer une ligne |
Math
$\sqrt[3]{22 + 10}$
$^1/_2$
$\frac{n!}{k!(n-k)!}$
|
Diagram
```flow
st=>start: Start
op=>operation: Your Operation
cond=>condition: Yes or No?
e=>end
st->op->cond
cond(yes)->e
cond(no)->op
```
|
Mermaid
```mermaid
graph LR
A[Hard edge] -->B(Round edge)
B --> C{Decision}
C -->|One| D[Result one]
C -->|Two| E[Result two]
```
|