Hi,
i think just doing
e html: '<some html>'
also works.
Elements should not be instantiated like you do, there is an interface for each element that can be called on "e".
e div, e html:, e h1:, etc. The interface instantiates the right class behind.
You can find this somewhere in the core classes, but i don"t remember where and i can't check right now.
Steven.
Le 2018-02-13 09:20, Siemen Baader a écrit :
Formulating the question helped me to find the solution after I posted:
index
^ [ :e | e add: (ILRawHtmlElement new contents: 'hello <strong>wo<br>rld</strong>') ]:)cheers,Siemen
On Tue, Feb 13, 2018 at 9:14 AM, Siemen Baader <siemenbaader@gmail.com> wrote:
Hi all,is there a way to render raw HTML from Iliad widgets, or perhaps mustache templates? I'm interested in not using the builders always because I use an external web editor that generates plain HTML and that has some advantages in my workflow.Is it possible do it with Seaside & Reef instead?-- Siemen