Différences entre versions de « StackEdit »

De Mi caja de notas

(Page créée avec « [StackEdit](https://stackedit.io) is a full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stac... »)
 
 
(3 versions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
[StackEdit](https://stackedit.io) is a full-featured, open-source [[Markdown]] editor based on [[PageDown]], the Markdown library used by Stack Overflow and the other Stack Exchange sites.
+
Un éditeur [[markdown]] fonctionnant dans le navigateur > https://stackedit.io
  
  
  
https://stackedit.io
+
> [StackEdit](https://stackedit.io) is a full-featured, open-source [[Markdown]] editor based on [[PageDown]], the Markdown library used by
 +
[[Stack Overflow]] and the other Stack Exchange sites.
 +
 
 +
 
 +
 
 +
 
 +
## Diagrammes UML
 +
 
 +
Vous pouvez afficher des diagrammes UML utilisant [Mermaid](https://mermaidjs.github.io/).
 +
Par exemple, ceci produira un diagramme de séquence :
 +
 
 +
```mermaid
 +
sequenceDiagram
 +
Alice ->> Bob: Hello Bob, how are you?
 +
Bob-->>John: How about you John?
 +
Bob--x Alice: I am good thanks!
 +
Bob-x John: I am good thanks!
 +
Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row.
 +
 
 +
Bob-->Alice: Checking with John...
 +
Alice->John: Yes... John, how are you?
 +
```

Version actuelle datée du 30 septembre 2019 à 13:42

Un éditeur markdown fonctionnant dans le navigateur > https://stackedit.io


> [StackEdit](https://stackedit.io) is a full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.



    1. Diagrammes UML

Vous pouvez afficher des diagrammes UML utilisant [Mermaid](https://mermaidjs.github.io/). Par exemple, ceci produira un diagramme de séquence :

```mermaid sequenceDiagram Alice ->> Bob: Hello Bob, how are you? Bob-->>John: How about you John? Bob--x Alice: I am good thanks! Bob-x John: I am good thanks! Note right of John: Bob thinks a long
long time, so long
that the text does
not fit on a row.

Bob-->Alice: Checking with John... Alice->John: Yes... John, how are you? ```