sinaatalay / rendercv

The engine of the RenderCV App
http://docs.rendercv.com
MIT License
1.75k stars 116 forks source link

URL not showing in Publications Section #128

Closed schrummy14 closed 1 month ago

schrummy14 commented 1 month ago

Describe the bug When using a URL instead of the DOI, no URL is shown in the PDF.

Looking at the .md file that is created, the url is used to produce a name for the url but no url is inserted

## My Awesome Thing That Uses a URL ([https://www.example.com/]())
- 2020
- **schrummy14**

rendercv version 1.12

To Reproduce

    publications:
      - title: My Awesome Thing That Uses a URL
        authors:
          - '**schrummy14**'
        date: 2020
        url: https://www.example.com/

Screenshots If applicable, add screenshots to help explain your problem. Using URL: image

Using DOI: image

sinaatalay commented 1 month ago

Thank you! The fix will be released in the next release.

schrummy14 commented 1 month ago

Hello, Thanks for the response. I was able to get the url to show using the below settings as a work around.

    publications:
      - title: My Awesome Thing That Uses a URL
        authors:
          - '**schrummy14**'
        date: 2020
        url: https://www.example.com/
        clean_url: https://www.example.com/
sinaatalay commented 1 month ago

Yes, this can be used as a temporary fix.

sinaatalay commented 1 month ago

This issue has been fixed in v1.13.

schrummy14 commented 1 month ago

Thank you