I can confirm everything that hugo said. It as in issue^ that should be present 
only with nimibook 0.2 and nimib 0.3 (in principle it should be reproducible 
locally but maybe it is due to some local templates not being updated -another 
changes in nimibook 0.3 is that templates will be loaded from memory). And I do 
need to release nimibook v0.3, I wanted to add a bit of docs, but if I do not 
manage (very likely) I will just tag and release before the holidays and 
document later.

^the issue is due to the fact that in nimib 0.3 we do not render blocks as a 
string (as in 0.2) but as a list, so in mustache template the content needs to 
change from:
    
    
    {{{ blocks }}}
    
    
    Run

to
    
    
    {{#blocks}}
    {{&.}}
    {{/blocks}}
    
    
    Run

Reply via email to