When embedding Elm in a DOM node instead of using fullscreen, is it 
possible for the view to be a list of Html elements?

<div id="main"></div>
<script>
    var node = document.getElementById('main');
    var app = Elm.Main.embed(node);

Suppose inside the 'main' div, I just want a list of paragraphs. As the 
view type cannot be List Html, I end up creating an inner div to put my 
paragraphs in, resulting in

<div id="main">
 <div>
  <p>...
 </div>
</div>

Is there some way to skip out the need to have an inner div there?

-- 
You received this message because you are subscribed to the Google Groups "Elm 
Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to