Improving metadata handling for Markdeep exportation.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-02-03 13:42:25 -05:00
parent 1c536c7e96
commit 64b12c4aad
2 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@ LeModel >> metadataDiv [
LeModel >> metadataInit [
^ OrderedDictionary new
at: 'id' put: self uidString;
at: 'title' put: self contentAsString;
at: 'created' put: self createTime asString;
at: 'modified' put: self latestEditTime asString;
at: 'creator' put: self createEmail asString;

View File

@ -18,7 +18,7 @@ LeTextSnippet >> metadata [
LeTextSnippet >> metadataInit [
^ OrderedDictionary new
at: 'id' put: self uidString;
at: 'title' put: self contentAsString;
at: 'parent' put: self parent uid asString;
at: 'created' put: self createTime asString;
at: 'modified' put: self latestEditTime asString;
at: 'creator' put: self createEmail asString;