Hi, I figured it out (at least in part) configuration := PRPillarConfiguration new. configuration outputType: PRMarkdownWriter. export:=PRExportPhase new . export executeOn: (PRCompilationContext withDocument: document withConfiguration: configuration) This code snipped generates a Json file which contains the markdown... how do I generate just the markdown? TIA Arturo On Sun, Feb 18, 2018 at 2:16 PM, Arturo Zambrano <arturo.zambrano@gmail.com> wrote:
Hi, can someone please tell me how to export a document using pillar7?
For pillar5 the example used to be:
1.
configuration := PRPillarConfiguration new. configuration outputType: PRHTMLWriter. PRExportPhase executeOn: { document } with: configuration.
Thanks!