Skip to content

Commit

Permalink
Fix 915.
Browse files Browse the repository at this point in the history
Generate quote instead of verbatim.
  • Loading branch information
Ducasse committed Nov 3, 2024
1 parent 7cc690f commit c80c370
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/Microdown-LaTeXExporter/MicLaTeXWriter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -330,11 +330,18 @@ MicLaTeXWriter >> visitParagraph: aParagraph [

{ #category : 'blocks' }
MicLaTeXWriter >> visitQuote: aQuote [
canvas environment
"canvas environment
name: 'verbatim';
with: [ aQuote children do: [ :child |
self visit: child.
canvas newLine ] ]
canvas newLine ] ]"


canvas newLine.
canvas environment
name: 'quote';
with: [ aQuote children do: [ :each | each accept: self ] ].

]

{ #category : 'blocks - inline' }
Expand Down

0 comments on commit c80c370

Please sign in to comment.