this post was submitted on 11 Aug 2026
20 points (100.0% liked)

Programming

28057 readers
280 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 3 years ago
MODERATORS
 

It's that time again and I'd like to make my life easier. I have multiple CVs for different positions and in different languages. Recruiters and companies want the CVs in PDF.

My current workflow is to sequentially edit the .odts (wording then layout because things move around depending on length), maybe the style, then save and export to PDF. That can take a while, so here I am, wondering if it can be sped up by simply editing a text file and generating CVs with certain themes.

Or what your workflow is. Maybe this isn't worth automating...

Solution

Finally went with RenderCV (thank you @bert@sh.itjust.works), which also runs locally. YAML in, PDF, PNG, HTML, etc. out. It comes with 10 themes or so. Haven't looked at what it take to create my own (I'm lazy).

Contender was JSON Resume, but the site is down and I tried it years ago but never got it to work properly.

you are viewing a single comment's thread
view the rest of the comments
[–] vk6flab@lemmy.radio 2 points 10 hours ago (1 children)
[–] MonkderVierte@lemmy.zip 0 points 10 hours ago (1 children)

Save a random website, convert the html to markdown.

[–] vk6flab@lemmy.radio 2 points 9 hours ago (1 children)

Given that HTML supports significantly more formatting than markdown, it's completely unsurprising that any conversion is imperfect, this is not a flaw in pandoc, it's simply not possible.

I'll also point out that I was suggesting that OP starts with markdown and converts that to a required output format using pandoc. The barrier to entry is significantly less than using LaTeX for example.

[–] MonkderVierte@lemmy.zip 1 points 3 hours ago* (last edited 2 hours ago)

Sure it's possible. Different markup languages have different levels of features: some like Markdown only very basic elements, some like asciidoc, orgmode, docbook, html, more differrentiated. There's 3 approaches converting from complexer to simpler formats:

  • lossless aproach: only convert the supported parts (e.g, dump everything in the output, converted or not)
  • lossy approach: extract the supported parts (discharge everything unsupported)
  • convenient approach: convert the unsupported parts to a similiar element (definition list to - list, figure + figcaption to ![alt]() *caption*, stuff like that)

I know of Typora doing a good job with the convenient approach, though still partially lossless.

Sylpheed (E-Mail client) does a good job at the lossy approach, for plain text display of html.

pandoc does the lossless approach well. But it laso depends on which of the multitude of markdown outputs you've picked.