Skip to content

Commit fe581a9

Browse files
author
JeanMarc van Leerdam
committed
Additional updates based on internal review
1 parent c56cead commit fe581a9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@ Output:
271271

272272
> [!IMPORTANT]
273273
> As mentioned above, some elements support special shapes. However, when using special shapes, nesting is not always possible using the
274-
> special shape. This applies to all `Service` elements, and the `Motivation_Value` element. If you have special shapes active, you have
275-
> to add a `$nest=%true()` parameter to these elements to avoid errors or unexpected results.
274+
> special shape. This applies to all `Service` elements, the `Motivation_Value` element, and the `Business_Actor` element. If you have
275+
> special shapes active, you have to add a `$nest=%true()` parameter to these elements to avoid errors or unexpected results.
276276
277277
### Theme Support
278278
Theme support is enabled and 5 variations are available. All the themes are based on Archimate specifications.

dist/plantuml-stdlib/stdlib/archimate/themes/shared_style.puml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ skinparam lineType $ARCH_LINETYPE
4242
!global $ARCH_SHARP_CORNER ?= 1
4343

4444
' $ARCH_SPECIAL_SHAPES drives the usage of special shapes for some elements.
45-
' Note that we only use plantuml shapes that support nesting
46-
' This means that we do not use actor, queue (for role and stakeholder), or usecase (for value)
45+
' Note that there are some custom shapes that do not support nesting (actor and usecase).
46+
' This means that when using these elements as containers, one must add `$nest=%true()` to the call, so that the regular shape will be used.
4747
!global $ARCH_SPECIAL_SHAPES ?= %false()
4848

4949
<style>

samples/Archimate-Elements.wsd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
@startuml
22
'!pragma layout smetana
33

4-
!global $ARCH_LOCAL = true
5-
!global $ARCH_DEBUG = false
6-
!global $ARCH_SPECIAL_SHAPES = true
7-
!if ($ARCH_LOCAL == false)
4+
!global $ARCH_LOCAL = %false()
5+
!global $ARCH_DEBUG = %false()
6+
!global $ARCH_SPECIAL_SHAPES = %true()
7+
!if ($ARCH_LOCAL == %false())
88
!include <archimate/Archimate>
99
'!theme archimate-alternate from <archimate/themes>
1010
'!theme archimate-handwriting from <archimate/themes>

0 commit comments

Comments
 (0)