Typora 0.9.9.30 (0.9.80) beta

by typora.io

New / Improvement

New Mermaid Diagrams

We upgraded our Mermaid library, now new diagrams are supported:

Class Diagram
classDiagram
      Animal <|-- Duck
      Animal <|-- Fish
      Animal <|-- Zebra
      Animal : +int age
      Animal : +String gender
      Animal: +isMammal()
      Animal: +mate()
      class Duck{
          +String beakColor
          +swim()
          +quack()
      }
      class Fish{
          -int sizeInFeet
          -canEat()
      }
      class Zebra{
          +bool is_wild
          +run()
      }

class-diagram

State Diagram
stateDiagram
    [*] --> Still
    Still --> [*]

    Still --> Moving
    Moving --> Still
    Moving --> Crash
    Crash --> [*]

state-diagram

Pie Chart Diagrams
pie
    "Dogs" : 386
    "Cats" : 85
    "Rats" : 150 

pie-chart

Besides the new diagrams, there are also a few bug fix:

Support for new languages

To contribution on the i18n of Typora, please checkout https://github.com/typora/Typora-i18n

Bug Fix

Find & Replace

Spellcheck

Stability

Copy & Paste

Export

Others