diff --git a/src/Grafoscopio/GrafoscopioNode.class.st b/src/Grafoscopio/GrafoscopioNode.class.st index b18ea00..d725273 100644 --- a/src/Grafoscopio/GrafoscopioNode.class.st +++ b/src/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 }