sinaatalay / rendercv

A LaTeX CV/Resume Framework
http://docs.rendercv.com
MIT License
1.67k stars 108 forks source link

Project Section Links #21

Closed andrefpoliveira closed 6 months ago

andrefpoliveira commented 6 months ago

I think it would be great if we were able to add a link to some of the projects (App Store, Google Play, website,...). This would allow a quick visualization of the project itself.

sinaatalay commented 6 months ago

Hello, this can already be achieved with Markdown links. RenderCV supports Markdown format, so you can use markdown in your entries.

Example:

name: Some Project | [Google Play Store](https://example.com), [App Store]([Google Play Store](https://example.com))
location: Remote
date: 2021-09
highlights:
  - Developed a web application with **React** and **Django**.
  - Implemented a **RESTful API**

which will be rendered as:

image

Or you can even do this in the location field, like shown below:

name: Some Project
location: "[Google Play Store](https://example.com)"
date: 2021-09
highlights:
  - Developed a web application with **React** and **Django**.
  - Implemented a **RESTful API**

which will be rendered as:

image