prat0318 / json_resume

Generates pretty HTML, LaTeX, markdown, with biodata feeded as input in JSON
http://prat0318.github.io/json_resume
MIT License
1.36k stars 116 forks source link

enhancement suggestion #42

Open imtypist opened 6 years ago

imtypist commented 6 years ago

Thank you for contributing to this excellent project. I think there should be a key like href in papers/publications section to add href attribute to paper title. For example,

"papers": {
       "items": [
            {
            "authors":"imtypist",
            "title":"This is a title",
                        "href":"http://xxx.com",  // add the key 'href'
            "misc":"Journal of Computer Applications, August 2017"
            }
           ]
    }

Or you can delete the mark <a> outside title in HTML template, then we can use markdown-style to add a link to paper title. For example,

"papers": {
       "items": [
            {
            "authors":"imtypist",
            "title":"[This is a title](http://xx.com)", // use markdown-style
            "misc":"Journal of Computer Applications, August 2017"
            }
           ]
    }

I think the latter may be easier to modify.