I did a pass on the Markdown exporter to align it with CommonMark specifications, so it is exporter properly if I instantiate the objects.

But Pillar also needs to parse the string properly.

On Sun, Aug 27, 2017 at 8:28 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Hi peter

I do not think you can. I learned this features friday while writing
md text to point to travis.
This is something that we will able to add but for now my focus is not there.
Stef

On Sat, Aug 26, 2017 at 10:41 PM, Peter Uhn��k <i.uhnak@gmail.com> wrote:
> Hi,
>
> how can I embed an image into an anchor in Pillar?
>
> I've tried
>
> *+Pharo>https://pharo.org/web/files/pharo.png+>http://pharo.org/*
>
> I've also tried to create document by hand and export it, but every single
> exporter failed on it.
>
> doc := PRDocument new
> add: (PRExternalLink new
> reference: 'http://pharo.org/';
> add: (PRFigure new
> reference: 'https://pharo.org/web/files/pharo.png';
> add: (PRText content: 'Pharo');
> yourself
> );
> yourself
> );
> yourself
>
> Thanks,
> Peter