-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to open slides in the browser? #51
Comments
So - yes, it is possible; however, there isn't currently an easy way to do it. As you've noted, a Podium slidedeck uses remark.js under the hood; so if you follow the boilerplate instructions on the Remark homepage you can get the content displayed in your browser. For the moment, at least, you'll need to roll that webpage yourself. The The contents of the resources folder should be the same as this folder |
I see, thanks for the explanation! Btw, would be cool to integrate https://github.com/astefanutti/decktape into podium to allow PDF export. |
Agreed - PDF export (whether using decktape, or something else) is another thing on my wish list . |
Wrt. viewing a presentation as Webpage. The following works:
PDF export works if you use chrome and are willing to tweak the output settings a bit. Be aware that the first slide will contain and error message but subsequent slides will show content. |
Thanks for the walthrough, @edthamm! It worked for me. The only catch for me was that I needed to add a little additional styling to get the slides to render at the full page width: @media print {
.remark-slide-scaler {
position: static;
margin: 0 auto;
}
} And after printing the PDF from Chrome, I used Acrobat to crop off the whitespace from the bottom of the page. |
It seems that podium uses ramark.js under the hood (looking at the example deck) but if I open the
slides.html
in the browser it can't find anything from the/resources/
directory (which I guess is packaged with thePodium.app
).Is there a way to use podium as both the Desktop presentation tool but also be able to export as a webpage for hosting slides online?
Thanks!
The text was updated successfully, but these errors were encountered: