sammo3182 / cv

MIT License
0 stars 0 forks source link

Pdf to Html #1

Open sammo3182 opened 4 years ago

sammo3182 commented 4 years ago

Convert the pdf to html through pagedown.

Ref:

https://github.com/rstudio/pagedown https://github.com/nstrayer/datadrivencv

sammo3182 commented 3 years ago

See vitae::markdown-cv template

sammo3182 commented 3 years ago

See how to rendering all format:

output:
  bookdown::word_document2: default
  bookdown::pdf_document2: default
knit: (function(inputFile, encoding) {
  rmarkdown::render(inputFile, encoding = encoding,
  output_dir = "output", output_format = c("bookdown::word_document2", "bookdown::pdf_document2")) })

Ref: https://stackoverflow.com/questions/39662365/knit-one-markdown-file-to-two-output-files/53280491#53280491