html-app

Version: org.nasdanika.models.app.cli@2025.2.0
Usage: nsd drawio html-app [-fhRV] [-b=<base>] [-P=<insertionIndex>] [-r=<rootLabel>] [--ref-base-uri=<refBase>] [-x=<indexName>] [--content-type-resource-factory=<String=Class>]... [--extension-resource-factory=<String=Class>]... [-F=Invocable URI]... [--protocol-resource-factory=<String=Class>]... [COMMAND] Generates html application model from a drawio document -b, --base-uri=<base> Base URI. E.g. 'pages/' --content-type-resource-factory=<String=Class> Maps content type to resource factory class --extension-resource-factory=<String=Class> Maps extension to resource factory class -f, --file Root label option is a file path -F, --representation-element-filter=Invocable URI Invocable URI of a representation element filter URIs are resolved relative to the current directory -h, --help Show this help message and exit. -P, --position=<insertionIndex> Insertion position Defaults to 0 --protocol-resource-factory=<String=Class> Maps protocol to resource factory class -r, --root-label=<rootLabel> Root label URL or file path, resolved relative to the current directory -R, --add-to-root Add labels to the root even if the principal is present --ref-base-uri=<refBase> Base URI for resolving documentation and prototype references. Resolved relative to the document URI -V, --version Print version information and exit. -x, --index=<indexName> Index file name, defaults to index.html Commands:
  • save - Saves model to a file
  • site - Generates HTML site

Example

drawio diagram.drawio html-app -r root-action.yml --add-to-root site -r=-1 -F page-template.yml docs

  • Parent drawio command loads diagram.drawio diagram resource
  • This command:
    • Generates an html application model from the diagram elements
    • Loads a root action from root-action.yml resource
    • Adds the generated labels to the root action
  • Passes the resulting model to the site sub-command to generate a documentation site

Diagram element configuration

Diagram elements can be configured with the following properties:

  • documentation – documentation text in documentation format
  • doc-format – explicitly specified documentation format for documentation and ``doc-ref`. Out of the box:
    • markdown (default),
    • html
    • text
  • doc-ref – URI of a documentation resource resolved relative to the URI of the diagram file. Documentation format is derived from the URI extension, defaulting to markdown. Use doc-format to override.
  • icon – diagram element icon URL resolved relative to the diagram file. If there is no slash (/) in the icon name then it is treated as a CSS style, e.g. fas fa-user. For image diagram elements icons are derived from element images. It is recommended to use SVG 20x20 OR 18x18 pixels for icons because they are also used in page titles and PNG images get blurry when scaled up.
  • parent – Connection property with values source or target. Use to generate documentation from mind maps where parent/child relationship is defined by connections, not by containment.
  • prototype & proto-ref – YAML specification of html application action, link or label. See load specifications of respective model elements for supported configuration keys. If both properties are specified, prototype takes precedence over proto-ref. With prototypes you can:
    • Generate complex site pages (actions) with children, navigation, sections, …
    • Reuse action models. For example, generate an action model from one diagram and use it as a prototype for an element of another diagram. Or generate an action model for CLI or Ecore documentation.
  • role – action/page role:
    • anonymous (default for connections)
    • child (default for nodes)
    • navigation
    • section
  • sort-key – By default generated pages (actions) are sorted alphabetically by title. This property can be used to customize sorting. If it is set then pages are sorted first by the property value and then by page title.
  • title – By default the element label is used as page title (action text). Use this property to explicitly set the page title. For example, for elements with long labels.

Site pages are generated only for elements with:

  • Documentation (documentation or doc-ref), prototypes (prototype or prototype-ref), or both.
  • Labels or title property. If you don’t want an element label to be visible (e.g. on connections) uncheck “Font color” checkbox on the “Text” tab.

prototype

If your top-level diagram page is generated as a principal action and the root action or link references some external site, e.g. your company site, then you need to use the following prototype for proper generation:

Action:
  location: ${base-uri}index.html

Below is an example of a prototype which defines a navigation action:

Action:
    navigation:
      - Action:
          location: about-wendy.html
          icon: fas fa-help
          text: About
          content:
            Interpolator:
              source:
                exec.content.Text: |    
                  This is an example of a page from an action prototype.

proto-ref

Property value is a URI of the prototype action or label resolved relative to the element base URI. For example bob-prototype.yml#/.

icon

Drawio has more than two thousand built-in icons. You can find more icons on the below sites:

  • Font Awesome 5 icons
  • FlatIcons - 16.8 million icons. Free with attribution, a paid plan is available - no attribution. In-browser editor. PNG and SVG (premium) formats.
  • IconFinder - the world’s largest marketplace for icons, … 6 million icons at your fingertips including free icons. Multiple subscription levels.
  • Icons8 - more than a million icons in 47 styles. Free and subscription. Icons can be edited in-place before downloading.
  • Iconduck - more than 250 000 free open source icons
  • Techicons - SVG and PNG tech icons, sourced from https://github.com/devicons/devicon. 473 icons.
  • Cloud providers:

Element ID

Element IDs are used to construct element page URLs. Element IDs are generated as long random strings. They are editable - double-click on the ID at the top of the data dialog. So, if you’d like to have semantic URLs - customize the IDs.

Page and element links

You may link elements to pages and other element using the extended link syntax.

When an element links to a page, the page root1 is logically merged with the linking element and page elements (except elements liking to other elements) become logical children of the linking element.

If an element links to another element, then that element is not considered a logical child of the page/root/page linking element. The link chain is traversed and the diagram element on the generated site is linked to the page of the link target element if that element has a page (i.e. it is documented). Otherwise there is no link.

Multiple top-level pages

A top-level diagram page is a page that is not linked from any diagram element. If there is more than one top-level page, add a principal action to the root-action.yml and link pages to the principal action.

Examples:

Options

You may change the file extension if you need to generate server pages (PHP, JSP, ASPX) with additional functionality such as authentication. For example, you may change the extension to php to add authentication and other dynamic behavior with -x index.php option. Internet Banking System PHP demo shows how do so. If you use generated search, also add -x <extension> option to the site command so the generated pages are included into the search index, e.g. -x php.

To add contents before the <html> opening tag use prolog configuration key in page template. E.g.:

  prolog:
    content.Text: |
      <?php
        ... php code here ...
      ?>

You can also use epilog to add content after the </html> closing tag.

If you use search and glossary, change their extensions too.

This technique can be used to publish generated sites to SharePoint - change the extension to aspx.