From bf7c15d5cd30b33213b27108cc9637b14c2bb92a Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Fri, 28 Jul 2017 11:39:28 +0000 Subject: [PATCH] Synchronizing before creation of a new ConfigurationOfGrafoscopio. --- repository/Grafoscopio/GrafoscopioNode.class.st | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/repository/Grafoscopio/GrafoscopioNode.class.st b/repository/Grafoscopio/GrafoscopioNode.class.st index b18ea00..d725273 100644 --- a/repository/Grafoscopio/GrafoscopioNode.class.st +++ b/repository/Grafoscopio/GrafoscopioNode.class.st @@ -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 }