https://github.com/vincentlaucsb/resume-generator
A simple but extensible resume generator that turns XML into HTML
https://github.com/vincentlaucsb/resume-generator
cpp cpp17 resume xml
Last synced: about 1 year ago
JSON representation
A simple but extensible resume generator that turns XML into HTML
- Host: GitHub
- URL: https://github.com/vincentlaucsb/resume-generator
- Owner: vincentlaucsb
- License: mit
- Created: 2019-05-23T04:53:21.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-29T22:09:12.000Z (about 7 years ago)
- Last Synced: 2025-02-17T09:43:19.660Z (over 1 year ago)
- Topics: cpp, cpp17, resume, xml
- Language: C++
- Homepage:
- Size: 184 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# resume-generator
A simple but extensible resume generator that turns XML or (hopefully soon) YAML into HTML.
## Usage
```
resume my_resume.xml [output (optional)]
```
## Features
* Use your own stylesheets
* Automatic parsing of URLs to HTML `` tags
* Define your own XML tags using the Mustache templating engine
```xml
Vincent La
{{#Address}}{{Value}}{{/Address}}
{{#Email}}{{{Value}}}{{/Email}}
{{#LinkedIn}}{{{Value}}}{{/LinkedIn}}
{{#Website}}{{{Value}}}{{/Website}}
```
### Planned Features
* Command line based help system in case you forget what XML tags you can use and what their attributes are
* Ability to "subclass" custom XML tags
* Ability to create different resumes from the same XML data file
* More user-friendly error messages