2022-04-01 22:22:33 +00:00
|
|
|
accessing
|
|
|
|
exportWithTemplate: mustacheFile On: folder
|
|
|
|
|
2022-04-02 00:49:39 +00:00
|
|
|
| tempDictionary modified |
|
|
|
|
tempDictionary := self asDictionary copy.
|
|
|
|
modified := self asDictionary at: 'profile-bio'.
|
|
|
|
modified := modified copyReplaceAll: '@' with: '\@'.
|
|
|
|
modified := modified copyReplaceAll: '_' with: '\_'.
|
|
|
|
tempDictionary at: 'profile-bio' put: modified.
|
2022-04-01 22:22:33 +00:00
|
|
|
MarkupFile
|
|
|
|
exportAsFileOn: (folder / self userName , 'tex')
|
2022-04-02 00:49:39 +00:00
|
|
|
containing:(mustacheFile asMustacheTemplate value: tempDictionary)
|