Hi, when typesetting bibliographies, ConTeXt seems to link back to the (first?) citation within the text. A side effect is that the whole reference entry is colored in the link color. Is there a possibility to deactivate the back linking or limit it to the key? This is also relevant, when the bibliography contains additional URLs or DOIs that link to external resources but are not highlighted since all surrounding text is colored in the same way. Here is a MWE: ``` \setupinteraction[state=start, color=red] \startbuffer[testdata] @Book{knuth1, author = {Donald E. Knuth}, title = {TEX and METAFONT. New directions in typesetting}, year = {1979}, publisher = {Addison-Wesley}, } @Article{someother, author = {Some Person and Some Otherperson}, title = {Another title}, year = {1900}, } \stopbuffer \usebtxdataset[main][testdata.buffer] \usebtxdefinitions[aps] \setupbtx[dataset=main] \definebtxrendering[bibrendering][aps][dataset=main] \starttext Knuth developed \TeX \cite[knuth1]. Several persons said something \cite[someother]. \placelistofpublications[bibrendering] \stoptext ``` (The whole bibliography entry is red here.) Gerion