« Typora » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Ligne 91 : | Ligne 91 : | ||
= Plugins = | = Plugins = | ||
{| class="wikitable wtp" | {| class="wikitable wtp" | ||
! Name | ! Name | ||
Ligne 100 : | Ligne 97 : | ||
| [https://github.com/gatziourasd/typora-tabbar-plugin typora-tabbar-plugin] || allow to open multiple documents in tabs | | [https://github.com/gatziourasd/typora-tabbar-plugin typora-tabbar-plugin] || allow to open multiple documents in tabs | ||
|} | |} | ||
== Linux == | |||
{{boxx|~/.config/Typora/plugins}} | |||
<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> |
Version du 7 janvier 2024 à 08:57
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
![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] ``` |
Plugins
Name | Description |
---|---|
typora-tabbar-plugin | allow to open multiple documents in tabs |
Linux
~/.config/Typora/plugins
/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> |