Fixing bug reported at:
https://lists.riseup.net/www/arc/grafoscopio/2017-12/msg00014.html
This commit is contained in:
parent
638da2ed47
commit
4bdbbcff6a
@ -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 }
|
||||
|
@ -662,6 +662,7 @@ GrafoscopioNotebook >> pandocOptionsComputed [
|
||||
|
||||
| result |
|
||||
result := '' writeStream.
|
||||
self pandocOptions ifNil: [ ^ '' ].
|
||||
self pandocOptions
|
||||
do: [ :option |
|
||||
option isDictionary
|
||||
|
Loading…
Reference in New Issue
Block a user