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"
}
]
}
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,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,I think the latter may be easier to modify.