Extension:Flex Diagrams

Category:GPL licensed extensions
MediaWiki extensions manual
Flex Diagrams
Release status: stableCategory:Stable extensions
Implementation Special page Category:Special page extensions, ContentHandler Category:ContentHandler extensions
Description An extension that allows for creating and modifying diagrams in various formats using graphical editors.
Author(s) Yaron Koren <yaron57@gmail.com> and Sahaj Khandelwal
Latest version 0.8 (April 2025)
Compatibility policy Master maintains backward compatibility.Category:Extensions with master compatibility policy
MediaWiki 1.40+Category:Extensions with manual MediaWiki version
License GNU General Public License 2.0 or later
Download See Extension:Flex Diagrams#Download
  • $wgFlexDiagramsEnabledFormats
Translate the Flex Diagrams extension if it is available at translatewiki.net
Issues Open tasks · Report a bug
Category:All extensions

Flex Diagrams is an extension that lets you create, and display, five different types of diagrams:

Each of these diagram types gets its own namespace.

Any such diagram page will get, in addition to the standard "Edit" tab, an "Edit diagram" tab that allows for editing these diagrams in a graphical way. Thus, any diagram can be edited either as text, or graphically. (Although the editors for DOT and Mermaid are unfortunately not true graphical editors, but simply text editors that include a preview element.)

Download

You can download the Flex Diagrams code, in .zip format, here.

You can also download the code directly via Git from the MediaWiki source code repository (see available tags). From a command line, call the following:

git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/FlexDiagrams.git

You can view the code online, including version history for each file, on either Gerrit or Phabricator.

Installation

Once you have obtained a "FlexDiagrams" directory and placed it in your /extensions directory, add the following to LocalSettings.php:

wfLoadExtension( 'FlexDiagrams' );

Usage

Creating diagrams

A BPMN, DOT, Drawio/diagrams.net, Gantt, or Mermaid diagram can be created by creating a page in the appropriate namespace (BPMN:, DOT:, Drawio:, Gantt:, or Mermaid: respectively), for example "BPMN:Approval process".

If you go to such a page before it is created, you will see a tab there, defined by Flex Diagrams, called "Create diagram". Clicking on it will launch an interactive diagram editor as shown below. Similarly, any such page, after being created, will have a tab called "Edit diagram", which will launch the same editor.

One customization specific to the Flex Diagrams extension is that, when generating a BPMN diagram, you can make any element be a link to a different wiki page. To do this, add the name of the page you want to link to, within double square brackets, at the end of the element title - after either a space or a newline. An example would be a node called "Get approval". Let's say there's a separate page, "BPMN:Approval process", which details all the steps of the process referred to as "Get approval". We can make the "Get approval" node link to "BPMN:Approval process" by changing its label to read "Get approval [[BPMN:Approval process]]". When the diagram is displayed, the link part will not be shown on the screen; instead, the entire node will appear as blue and become a clickable link. You can see examples of how such linking gets displayed in the gallery below.

Displaying diagrams

Any diagram can be displayed on any page by using the #display_diagram function. This function takes in a single argument, a page name, and displays the diagram defined on that page. An example would be:

{{#display_diagram:BPMN:Approval process}}

Screenshots

Version history

  • 0.1 - July 22, 2020 - Initial version
  • 0.2 - November 16, 2020 - Fix handling for MW < 1.33; linking capability added to BPMN; JS fixes; disable caching for BPMN display; other fixes
  • 0.3 - October 4, 2021 - Removed handling for MW < 1.31; added handling for MW 1.38+; added zooming for BPMN and Gantt; changed red links to diagrams to point to "action=editdiagram"; added "Leave site?" popup to diagram edit interface; other fixes
  • 0.4 - March 24, 2022 - Added Drawio/diagrams.net handling; upgraded Mermaid version; code improvements
  • 0.5 - March 30, 2023 - Removed handling for MW < 1.33; improved handling for MW 1.38+; improved colors and added "weeks" option to Gantt charts
  • 0.5.1 - July 12, 2023 - Improved support for MW >= 1.33; updated Mermaid to 10.2.1
  • 0.5.2 - February 19, 2024 - Coding improvements
  • 0.6 - July 10, 2024 - Removed handling for MW < 1.38; updated Mermaid to 10.9.0
  • 0.7 - December 31, 2024 - Added handling for DOT (Graphviz) diagrams; added subtitle display of incoming links to diagram pages; updated bpmn-js to 18.1.1
  • 0.7.1 - January 29, 2025 - Restored support for MW < 1.41, accidentally removed in version 0.7
  • 0.8 - April 9, 2025 - Removed handling for MW < 1.40; improved handling for MW 1.44+

See also

Category:Graph extensions Category:Extensions in Wikimedia version control
Category:All extensions Category:ArticleRevisionViewCustom extensions Category:CanonicalNamespaces extensions Category:ContentHandler extensions Category:Extensions in Wikimedia version control Category:Extensions included in Canasta Category:Extensions included in Miraheze Category:Extensions included in MyWikis Category:Extensions included in WikiForge Category:Extensions with manual MediaWiki version Category:Extensions with master compatibility policy Category:GPL licensed extensions Category:Graph extensions Category:HtmlPageLinkRendererEnd extensions Category:MakeGlobalVariablesScript extensions Category:ParserAfterTidy extensions Category:ParserFirstCallInit extensions Category:SkinTemplateNavigation::Universal extensions Category:Special page extensions Category:Stable extensions