Fixing bug reported at:

https://lists.riseup.net/www/arc/grafoscopio/2017-12/msg00014.html
This commit is contained in:
Offray Vladimir Luna Cárdenas 2017-12-11 16:09:44 +00:00 committed by SantiagoBragagnolo
parent c6ee02db43
commit 44eadee2be
2 changed files with 3 additions and 1 deletions

View File

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

View File

@ -662,6 +662,7 @@ GrafoscopioNotebook >> pandocOptionsComputed [
| result |
result := '' writeStream.
self pandocOptions ifNil: [ ^ '' ].
self pandocOptions
do: [ :option |
option isDictionary