Extension { #name : #LeModel } { #category : #'*Grafoscopio-Utils-Core' } LeModel >> metadata [ ^ OrderedDictionary new at: 'id' put: self uidString; at: 'parent' put: self parent uidString; at: 'created' put: self createTime asString; at: 'edited' put: self latestEditTime asString; at: 'creator' put: self createEmail asString; at: 'editor' put: self editEmail asString; yourself. ] { #category : #'*Grafoscopio-Utils-Core' } LeModel >> metadataDiv [ | output | output := '' writeStream. output nextPutAll: '
'; lf. ^ output contents. ]