Once again, how do you format your resume to impress your interviewer?

This content does not talk about resume writing method, only talk about typesetting

Results the following

First, put your resume in markdown format

Recommended quick generation tool: MarkDown resume template

Open the Nuggets’ Markdown online editor

  • Write you wellmarkdownPlease paste your resume here
  • Choose the one you like from the list of topicsmarkdownThe theme
  • Kudos to the Nuggets here, the NuggetsmarkdownThe theme is really good

Third, the ultimate move

  • F12 open the console and paste the following code into the consolePress enter to perform
  • $('.main').style.height = '300vh'This line of code controls the number of PDF pages generated,300vhsaidOn page 3
$('.editor-header').remove();
$('.footer').remove();
$('.bytemd-editor').style.width = 0;
$('.bytemd-preview').style.marginLeft = 0;
$('.bytemd-preview').style.border = 'none';
$('.main').style.top = 0;
$('.main').style.bottom = 0;
$('.main').style.height = '300vh';
window.print();
Copy the code
  • Use the browser’s print interface to convert the page topdfSave the file to the local PC
  • You can adjust the header footer and zoom of the generated page

Is not very magical, give me a thumbs-up 👍