-
Notifications
You must be signed in to change notification settings - Fork 5
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
Some suggestions ... #5
Comments
I forgot ... there was one more thing. It seems that remark-mode looks in the current directory and if it finds an Would it be better to separate the two purposes that |
Thanks, I'm glad you enjoy it! Yes, My personal motivation for this mode was to make the fastest way I could think of to get me from markdown content to slides served on the web, e.g. on github pages, which is what I usually default to. This is why I opted for customizability through actually changing the outputted index.html, e.g. to add css changes, that will persist across changes to your slides. As a bare minimum I commit the I definitely agree on your suggestion of providing the ability to use an external remark.html, e.g. to enable sharing a theme of yours across your slideshows. I pushed a new version now that adds While I like the idea of multiple slideshows in the same folder, and naming the output files based on the Edit: I guess you could use |
I've just started using Remark, and remark-mode is great! Here are a couple of observations from a new user.
I want to customize the appearance of my slides, so I set the value of
remark--folder
in my init file to a folder with a customized version of the skeleton fileremark.html
. I was surprised to find that remark-mode also uses this as the location it looks forserver.js
. It was easy enough to copy it to my new folder, but it seems like that server.el is an integral part of your mode, whereas the skeleton is something most users will want to customize. Would it make sense to splitremark--folder
into two different variables for setting the location of these two very different files?I often have several related slideshows in one folder and I would prefer to generate an html file for each, instead of using
index.html
for all of them. Would you consider a configurable option to have remark-mode use the basename of the remark file and add ".html" to it? So thatfoo.remark
would generatefoo.html
?The text was updated successfully, but these errors were encountered: