A simple yet powerful Markdown resume renderer that converts Markdown resumes into beautiful HTML pages.
- 💼 Markdown rendering engine designed specifically for resumes
- 🎨 Fully customizable themes and styles
- 📱 Responsive design for all devices
- 🔧 Easy customization via config file
- ✨ Special formatting for skills, time periods, and awards
- 🖼️ SkillIcons integration for visual skill representation
- Edit
resume.mdwith your resume content - Customize
js/config.jsas needed - View
index.htmlthrough a web server
Blank_Intro/
├── css/
│ └── style.css # Main stylesheet
├── js/
│ ├── config.js # Configuration file
│ └── main.js # Main script
├── index.html # Main HTML file
├── resume.md # Resume content (Markdown format)
└── README.md # Project documentation
Markdown Guide
The basic structure of the resume:
# Title
Introduction...
## Professional Information
### Section 1 Title
#### Project Title
<!-- period -->Time Period<!-- /period -->
- Item 1
- Item 2<!-- period -->2020 – 2024<!-- /period -->Insert SkillIcons image links directly in Markdown:
<!-- award -->
🏆
#### Award Name
Award Description
<!-- date -->Award Date<!-- /date -->
<!-- /award --><!-- section-type: skills -->
...
<!-- /section-type -->The js/config.js file contains rich configuration options:
site: {
title: "Page Title",
description: "Page Description",
mainWebsite: "Main Website Link",
websiteLinkText: "Top-right Website Link Text",
markdownFile: "Path to Markdown File",
favicon: "Path to Favicon"
}theme: {
colors: {
primary: "#121314", // Primary color
accent: "rgba(255, 225, 11, 0.82)", // Accent color
accentLight: "rgba(255, 225, 11, 0.2)", // Light accent color
// More color configurations...
},
fonts: {
main: "Font Name",
googleFonts: "Google Fonts URL"
}
}sections: {
specialSections: {
"Section Title": {
type: "Section Type",
// Other configurations...
}
},
itemClassBySection: {
"Section Title": "CSS Class Name"
}
}footer: {
logo: "Footer Logo",
links: [
{ text: "Link Text", url: "Link URL", target: "_blank" }
],
copyright: {
year: "Copyright Year",
name: "Copyright Owner",
url: "Owner Link",
text: "Copyright Text"
},
tagline: "Footer Tagline"
}