I want to convert a Jekyll markdown page to PDF, but it doesn't work with Pandoc because I have used the Jekyll-scholar plugin to compile some bibtex citations. Using a browser to convert from html to pdf doesn't look good either. The source code is on my github repo. You can find the viat.md for the page which I want to convert to pdf. Let me know if there is a way to do the conversion. Thank you in advance!
Update on 2017-1-19: Here are some challenges if you think this question is trivial. Since I have used the Jekyll-scholar plugin, all my publication lists are called up in markdown by {% bibliography --file PublicationsFile --query @article %}
format which cannot be recognized by Pandoc for markdown compiling; If I use a browser to save the HTML page as a pdf, then those buttons like "Download" and "Link" will appear as Download (https://downloadlinke.com)
where I don't even want to have the meaningless Download buttons to show up in the pdf, and I want to have the links rendered for the article titles instead; finally, I certainly want to filter out the header, footer and sidebar from the HTML page for the pdf file. You can preview the vita page here and try out by yourself for working solutions. Ideally, I hope all of the works can be done automatically in Travis-CI for both my current HTML and a PDF version for downloading. Hopefully, you can point out some way to solve these problems.