Exactly.
Section 7 of
https://ci.inria.fr/pharo-contribution/job/EnterprisePharoBook/lastSuccessfulBuild/artifact/book-result/PillarChap/Pillar.html
has an example
�� �� | wiki |
�� �� wiki := '!My Document'.
�� �� PRPillarParser parse: wiki
Or
�� �� PRPillarParser parse: (FileSystem workingDirectory / 'foo.pillar')
readStream
and then
�� �� PRHTMLWriter write: document
This put together gives
�� �� PRHTMLWriter write: (
�� �� �� �� PRPillarParser parse: (FileSystem workingDirectory / 'welcome.pillar')
�� �� )
If I inspect the result of this expression I get the HTML string.
Thank you Cyril. This is what I was looking for.
--Hannes
Happy to see it still works :)
I know there was work on Pillar after I wrote this. Maybe there is some functionalities that will need more than those simple examples. By I am not sure and I know that Stephane want to simplify it further.��