diff options
author | Igor Dysko <igor1.dysko@orange.com> | 2021-02-03 16:57:59 +0100 |
---|---|---|
committer | Igor Dysko <igor1.dysko@orange.com> | 2021-02-03 16:57:59 +0100 |
commit | ea00a3c641dccea2942b215019c3e9ee2b9e17fe (patch) | |
tree | 700f0364748327ffc69e508ed726573e1bc37ac4 /src/main/resources/model_export.vm | |
parent | f4ab78b0d9748809e4279aebff27f7f7713188e8 (diff) |
Special characters in XMI file, small layout changes in navigation bar
Added support for special characters in XMI file. Spaces in navigation bar were narrowed.
Issue-ID: AAI-2441
Signed-off-by: Igor Dysko <igor1.dysko@orange.com>
Change-Id: Icd0c6d398beb71b7e8a367d301a40dd6c1105e0f
Diffstat (limited to 'src/main/resources/model_export.vm')
-rw-r--r-- | src/main/resources/model_export.vm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/model_export.vm b/src/main/resources/model_export.vm index ae92fab..a8992c2 100644 --- a/src/main/resources/model_export.vm +++ b/src/main/resources/model_export.vm @@ -51,7 +51,7 @@ #foreach($entity in $entityList) <packagedElement xmi:type="uml:Class" xmi:id="$entity.id" name="$entity.name"> <ownedComment xmi:type="uml:Comment" xmi:id="$entity.randomId" annotatedElement="$entity.id"> - <body>$entity.description</body> + <body>$esc.xml($entity.description)</body> </ownedComment> #foreach($association in $entity.neighbours) #if( $association.isComposition) |