lutaml / lutaml-uml

UML module for LutaML
2 stars 2 forks source link

Incorrect diagram when class name has a digit at the beginning #95

Open andrew2net opened 2 years ago

andrew2net commented 2 years ago

In case a class name has a digit at the beginning of its name a diagram is rendered incorrectly.

diagram IeeeMetadata {
  class 3gppBibliographicItem {
    +doctype: DocumentType
  }

  enum DocumentType {
    TR
    TS
  }

  association {
    owner BibliographicItem
    member 3gppBibliographicItem
    owner_type inheritance
  }

  association {
    owner DocumentType
    member 3gppBibliographicItem
    member_type direct
  }
}

3gppMetadata