State diagram demos
    
		stateDiagram
		  accTitle: This is the accessible title
      accDescr:This is an accessible description
      State1 --> State2
    
    
    
		stateDiagram-v2
		  accTitle: This is the accessible title
      accDescr: This is an accessible description
      [*] --> Still
      Still --> [*]
      Still --> Moving
      Moving --> Still
      Moving --> Crash
      Crash --> [*]
    
    
    
    stateDiagram
      accTitle: very very simple state
    accDescr: This is a state diagram showing one state
    State1
    
    
    
    stateDiagram
    [*] --> First
    state First {
    [*] --> second
    second --> [*]
    }
    
    
    stateDiagram
    State1: The state with a note
    note right of State1
    Important information! You can write
    notes.
    end note
    State1 --> State2
    note left of State2 : This is the note to the left.
    
    
    stateDiagram
    State1
    note right of State1
    Line1
Line2
Line3
Line4
Line5
    end note