Fixing pandocOptions.

This commit is contained in:
Gloria Meneses 2017-12-11 21:41:49 +00:00 committed by Offray Luna
parent 4bdbbcff6a
commit bca70f8f9f
1 changed files with 2 additions and 1 deletions

View File

@ -820,7 +820,8 @@ GrafoscopioNode >> output: anObject [
{ #category : #utility }
GrafoscopioNode >> pandocOptions [
self metadata ifNil: [ ^ nil ].
self metadata at: 'pandocOptions' ifAbsent: [ ^ '' ]
self metadata at: 'pandocOptions' ifAbsent: [ ^ '' ].
^ self metadata at: 'pandocOptions'
]
{ #category : #utility }