Consider the following MWE:
\documentclass[a4paper]{article}
\usepackage{hyperref}
\begin{document}
\nocite{test1,test2}
\bibliographystyle{plain}
\bibliography{sample}
\end{document}
And the bibliography file contains the following:
@misc{test1,
title = "\href{http://www.blah1.com/}{Title 1}"
}
@misc{test2,
title = "\href{http://www.blah2.com/}{Title 2}"
}
The output PDF file contains "Title 1." and "Title 2." with their corresponding hyperlinks. The bibliography looks ugly because of the periods at the end of the entries. I wonder if there is a way to discard the period and have "Title 1" and "Title 2" instead.