Skip to content

SamCullin/resume-md

Repository files navigation

Build & Release CI PyPI version GitHub Release License: MIT Maintenance Downloads GitHub issues PRs Welcome Conventional Commits semantic-release: angular

Markdown Resume Generator

'Buy Me A Coffee'

A simple, lightweight tool to convert markdown-formatted resumes into beautiful, print-ready HTML documents styled with Tailwind CSS.

Resume-MD Example

Features

  • Convert Markdown to styled HTML resumes
  • Modern design with Tailwind CSS
  • Automatic header detection for contact information
  • ATS-friendly hidden information for keyword optimization
  • Print-optimized layout with page break support
  • No external dependencies (Python standard library only)
  • Responsive design for both screen and print

Installation

From PyPI

pip install resume-md

From Source

git clone git@github.com:SamCullin/resume-md.git
cd resume-md
pip install -e .

Development Setup

To set up the development environment:

git clone git@github.com:SamCullin/resume-md.git
cd resume-md
pip install -e ".[dev]"

Usage

Basic Usage

resume-md --input your_resume.md

This will generate an HTML file with the same name as your input file (e.g., your_resume.html).

Command Line Options

resume-md --help

Available options:

  • --input, -i: Path to input markdown file (default: resume.md)
  • --output, -o: Path to output HTML file (default: <input_name>.html)
  • --template, -t: Path to HTML template file (use built-in template if not specified)
  • --version, -v: Show version information and exit

Using as a Library

from resume_md.tokenizer import MarkdownTokenizer, read_markdown_file
from resume_md.component_factory import tokens_to_components
from resume_md.renderer import Renderer

# Read and tokenize markdown
markdown_text = read_markdown_file("resume.md")
tokenizer = MarkdownTokenizer(markdown_text)
tokens = tokenizer.tokenize()

# Convert tokens to components and render to HTML
components = tokens_to_components(tokens)
renderer = Renderer()
rendered = renderer.render_components(components)

# Access the header and content HTML
header_html = rendered["header"]
content_html = rendered["content"]

Markdown Format

The resume-md tool supports a specific markdown format designed for resumes. For examples, see:

Page Breaks

You can force a page break in your resume using the special markdown comment syntax:

This is content on the first page.

[page-break]: # 

This content will appear on a new page.

When the document is printed, a page break will be inserted at this location.

ATS-Specific Information

You can include ATS (Applicant Tracking System) specific information that will be hidden from the visual display but accessible to text extraction systems. This is useful for including additional keywords, skills, or metadata that ATS systems can parse.

[ats-info]: # Skills: Python, JavaScript, TypeScript, React, Node.js
[ats-info]: # + Tools: Git, GitHub, VS Code, Docker, Kubernetes


[ats-info]: # + Certifications: AWS Certified Solutions Architect
[ats-info]: # + Languages: English (Native), Spanish (Fluent)

ATS Export Example:

Skills: Python, JavaScript, TypeScript, React, Node.js + Tools: Git, GitHub, VS Code, Docker, Kubernetes + Certifications: AWS Certified Solutions Architect + Languages: English (Native), Spanish (Fluent)

The ATS-info comments follow the format: [ats-info]: # Content

This information will be rendered as hidden HTML elements that are:

  • Invisible to users viewing the resume
  • Accessible to ATS systems for keyword extraction

Note

The ATS-info comments once exported to pdf will collapse to a single line. This is because the pdf format cannot support fonts below 1.5pt and sees these smaller lines as a single line. Keep this in mind when formatting your ats-info comments.

Example usage in a resume:

# John Doe
Email: john@example.com | Phone: (555) 123-4567

[ats-info]: # Skills: Python, JavaScript, Machine Learning, Data Analysis
[ats-info]: # Tools: Git, Docker, AWS, Jenkins, Terraform
[ats-info]: # Frameworks: React, Django, Flask, Express.js

## Professional Experience
...

Development

Running Tests

pytest
# With coverage
pytest --cov=resume_md

Code Formatting

black resume_md
isort resume_md

Project Structure

  • resume_md/: Main package
    • __init__.py: Package initialization
    • main.py: CLI entry point
    • tokenizer.py: Markdown tokenizer
    • components.py: Component data classes
    • component_factory.py: Converts tokens to components
    • renderer.py: Renders components as HTML
    • template.html: HTML template
  • tests/: Test cases
  • .github/workflows/: CI/CD workflows

Repository

License

MIT

About

Resume.md to Print-Ready HTML for email or serve online

Topics

Resources

Stars

Watchers

Forks

Contributors 3

  •  
  •  
  •  

Languages