From 61e47a097a1a36df34201f460ba2d4cff23a5df9 Mon Sep 17 00:00:00 2001 From: OffrayLuna Date: Mon, 31 Oct 2016 15:19:07 +0000 Subject: [PATCH] Update before AbreLatam2016 talk. --- src/Grafoscopio/GrafoscopioNode.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Grafoscopio/GrafoscopioNode.class.st b/src/Grafoscopio/GrafoscopioNode.class.st index adcc2f8..980e590 100644 --- a/src/Grafoscopio/GrafoscopioNode.class.st +++ b/src/Grafoscopio/GrafoscopioNode.class.st @@ -440,7 +440,7 @@ GrafoscopioNode >> markdownContent [ markdown nextPutAll: ' '. markdown nextPutAll: (self header copyReplaceTokens: #cr with: #lf); crlf; crlf. embedNodes := self children select: [:each | ((each header findTokens: $ ) at: 1) = '%embed']. - temporalBody := self body. + temporalBody := self body asString. embedNodes ifNotNil: [ (temporalBody includesSubstring: '%embed-all') ifFalse: [embedNodes do: [ :each | temporalBody := temporalBody copyReplaceAll: (each header) with: each body]]