You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To implement presenter notes, we are planning that HTML comments whose not to recognize as YAML object for directives will collect and return in the result object of Marpit.render().
<!-- theme: test-theme --># First page<!-- This HTML comment is not YAML, so it would be collected. -->---## Second page---### Third page<!-- It would be collected per pages. --><!-- These are expected to use as presenter note. -->
{html: '<div class="marpit"><section>...</section></div>',css: '.marpit > section { ... }',// Collected commentscomments: [['This HTML comment is not YAML, so it would be collected.'],[],['It would collect per pages.','These are expected to use as presenter note.',],],}
At first we had planned to implement this feature in marp-core. But to decide a specification of comment in framework-level is better than implementation at inherited class.
Hey @yhatt do you know if speaker notes can be styled?
They come out as times new roman and small font and i wonder if its possible to add any styling to them?
To implement presenter notes, we are planning that HTML comments whose not to recognize as YAML object for directives will collect and return in the result object of
Marpit.render()
.At first we had planned to implement this feature in marp-core. But to decide a specification of comment in framework-level is better than implementation at inherited class.
Related to yhatt/marp#30.
The text was updated successfully, but these errors were encountered: