Synchronizing before creation of a new ConfigurationOfGrafoscopio.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2017-07-28 11:39:28 +00:00 committed by SantiagoBragagnolo
parent 1f6feb2a98
commit ab1c992125
1 changed files with 6 additions and 3 deletions

View File

@ -664,11 +664,14 @@ GrafoscopioNode >> markdownContent [
self bodyAsMarkdownInto: markdownStream ].
(self headerStartsWith: '%idea')
ifTrue: [ self bodyAsMarkdownInto: markdownStream ].
(self headerStartsWith: '%item')
ifTrue: [ self itemAsMarkdownInto: markdownStream ].
(self headerStartsWith: '%footnote')
ifTrue: [ self footnoteAsMarkdownInto: markdownStream ].
((self tags = 'código') and: [(self hasAncestorHeaderWith: '%invisible') not & (self headerStartsWith: '%embed') not ])
ifTrue: [ self exportCodeNodeTo: markdownStream ].
^ markdownStream contents
((self tags = 'código') and: [(self hasAncestorHeaderWith: '%invisible') not
& (self headerStartsWith: '%embed') not ])
ifTrue: [ self exportCodeNodeTo: markdownStream ].
^ markdownStream contents
]
{ #category : #operation }