Changes between Version 2 and Version 3 of MermaidMacro


Ignore:
Timestamp:
Jul 3, 2016, 11:37:44 AM (8 years ago)
Author:
figaro
Comment:

Rearranged paragraphs to maintain consistency

Legend:

Unmodified
Added
Removed
Modified
  • MermaidMacro

    v2 v3  
    55== Description
    66
    7 With this macro, you can render mermaid diagrams in wiki pages.
    8  
    9 [https://knsv.github.io/mermaid mermaid] is a JavaScript library that can render diagrams and flowcharts from text in a similar manner as markdown.
     7With this macro, you can render mermaid diagrams in Trac wiki pages. [https://knsv.github.io/mermaid mermaid] is a JavaScript library that can render sequence diagrams, flowcharts and Gantt charts from text in a similar manner as markdown. The library itself is MIT licensed.
     8
     9[[Image(mermaid_demo.png)]]
    1010
    1111Current version of this macro uses mermaid version 0.5.1.
    12 
    13 == Example ==
    14 
    15 {{{
    16 {{{#!Mermaid
    17 sequenceDiagram
    18 A->> B: Query
    19 B->> C: Forward query
    20 Note right of C: Thinking...
    21 C->> B: Response
    22 B->> A: Forward response
    23 }}}
    24 }}}
    25 
    2612
    2713== !Bugs/Feature Requests
     
    4733General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    4834
     35== Example
     36
     37{{{
     38{{{#!Mermaid
     39sequenceDiagram
     40A->> B: Query
     41B->> C: Forward query
     42Note right of C: Thinking...
     43C->> B: Response
     44B->> A: Forward response
     45}}}
     46}}}
     47
     48This yields the following diagram on the page:
     49
     50[[Image(mermaid_example.png)]]
     51
    4952== Recent Changes
    5053