Version: |
org.nasdanika.models.app.cli@2025.2.0
|
---|
drawio diagram.drawio html-app -r root-action.yml --add-to-root site -r=-1 -F page-template.yml docs
diagram.drawio
diagram resourceroot-action.yml
resourceDiagram elements can be configured with the following properties:
documentation
– documentation text in documentation formatdoc-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:
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
or doc-ref
), prototypes (prototype
or prototype-ref
), or both.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.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.
Property value is a URI of the prototype action or label resolved relative to the element base URI. For example bob-prototype.yml#/
.
Drawio has more than two thousand built-in icons. You can find more icons on the below sites:
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.
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.
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:
See Drawio API
↩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
.