« Typora » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
(→Table) |
|||
(18 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 7 : | Ligne 7 : | ||
= [https://support.typora.io/Shortcut-Keys/ Raccourcis clavier] = | = [https://support.typora.io/Shortcut-Keys/ Raccourcis clavier] = | ||
{| class="wikitable wtp wtmono1" | {| class="wikitable wtp wtmono1" | ||
|- | |||
| Ctrl + Shift + L || Display / Hide left panel | |||
|- | |- | ||
| Ctrl + Shift + V || Paste As Plain Text | | Ctrl + Shift + V || Paste As Plain Text | ||
Ligne 28 : | Ligne 30 : | ||
= Extended syntax = | = Extended syntax = | ||
<kode lang=' | <kode lang='md'> | ||
==highlight== | ==highlight== | ||
H~2~O | H~2~O | ||
Ligne 34 : | Ligne 36 : | ||
Ligne: --- | Ligne: --- | ||
</kode> | </kode> | ||
== [https://support.typora.io/Images Images] == | |||
<kode lang='md'> | |||
![image-name](folder.assets/image-name.png) | |||
<img src="folder.assets/image-name.png" style="zoom:150%" /> | |||
<img src="folder.assets/image-name.png" width="80%" /> | |||
</kode> | |||
* [https://support.typora.io/Resize-Image/ Resize Images] | |||
== [https://support.typora.io/Table-Editing/ Table] == | == [https://support.typora.io/Table-Editing/ Table] == | ||
<kode lang=' | <kode lang='md'> | ||
| Header colonne 1 | Header colonne 2 | | | Header colonne 1 | Header colonne 2 | | ||
</kode> | </kode> | ||
Ligne 48 : | Ligne 59 : | ||
|} | |} | ||
== Math == | == [https://support.typora.io/Math Math] == | ||
<kode lang=' | <kode lang='md'> | ||
$x^2 \ge 2$ | |||
$^1/_2 \le ^\pi/_2$ | |||
$\frac{n!}{k!(n-k)!}$ | |||
$\sqrt[3]{22 + 10}$ | $\sqrt[3]{22 + 10}$ | ||
</kode> | </kode> | ||
== [https://support.typora.io/Draw-Diagrams-With-Markdown Diagram] == | |||
<kode lang='md'> | |||
```flow | |||
st=>start: Start | |||
op=>operation: Your Operation | |||
cond=>condition: Yes or No? | |||
e=>end | |||
st->op->cond | |||
cond(yes)->e | |||
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> | |||
== [https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts Alert] == | |||
<kode lang='md'> | |||
> [!NOTE] | |||
> Text | |||
> [!TIP] | |||
> [!IMPORTANT] | |||
> [!WARNING] | |||
> [!CAUTION] | |||
</kode> | |||
= Plugins = | |||
{| class="wikitable wtp" | |||
! Name | |||
! Description | |||
|- | |||
| [https://github.com/gatziourasd/typora-tabbar-plugin typora-tabbar-plugin] || allow to open multiple documents in tabs | |||
|} | |||
{| class="wikitable wtp wtmono2 wtmono3" | |||
! OS | |||
! Plugin path | |||
! Bin path | |||
|- | |||
| Linux || ~/.config/Typora/plugins || /usr/share/typora | |||
|- | |||
| Windows || $home\AppData\Roaming\Typora\plugins || $home\AppData\Local\Programs\Typora | |||
|} | |||
<filebox fn='/usr/share/typora/resources/window.html'> | |||
<!-- add css before the closing head tag --> | |||
<link rel="stylesheet" href="typora://app/userData/plugins/tabbar/bundle.css"> | |||
</head> | |||
<!-- add css before the closing body tag --> | |||
<script src="typora://app/userData/plugins/tabbar/bundle.js" defer></script> | |||
</body> | |||
</filebox> |
Dernière version du 4 avril 2024 à 08:31
Liens
Raccourcis clavier
Ctrl + Shift + L | Display / Hide left panel |
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
![image-name](folder.assets/image-name.png) <img src="folder.assets/image-name.png" style="zoom:150%" /> <img src="folder.assets/image-name.png" width="80%" /> |
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
$x^2 \ge 2$ $^1/_2 \le ^\pi/_2$ $\frac{n!}{k!(n-k)!}$ $\sqrt[3]{22 + 10}$ |
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] ``` |
Alert
> [!NOTE] > Text > [!TIP] > [!IMPORTANT] > [!WARNING] > [!CAUTION] |
Plugins
Name | Description |
---|---|
typora-tabbar-plugin | allow to open multiple documents in tabs |
OS | Plugin path | Bin path |
---|---|---|
Linux | ~/.config/Typora/plugins | /usr/share/typora |
Windows | $home\AppData\Roaming\Typora\plugins | $home\AppData\Local\Programs\Typora |
/usr/share/typora/resources/window.html |
<!-- add css before the closing head tag --> <link rel="stylesheet" href="typora://app/userData/plugins/tabbar/bundle.css"> </head> <!-- add css before the closing body tag --> <script src="typora://app/userData/plugins/tabbar/bundle.js" defer></script> </body> |