In my previous email I forgot to include the \placelistofpublications command. I tried that and now I'm getting a citation, but the bibliography entry is not correctly typeset...

On Sat, 26 Mar 2022 at 13:25, A A <amine.aboufirass@gmail.com> wrote:
Hi All,

I'm trying to get a simple bibliography to work with ConTeXt. Here's what I have so far:

test.tex

\usebtxdataset[bibliography.bib]

\starttext
 
  \startbodymatter
    See \cite[proofwiki]
  \stopbodymatter

  \startbackmatter
    \startsection[title=Bibliography]
    \stopsection
  \stopbackmatter
\stoptext

bibliography.bib

@misc{
  proofwiki,
  title={{Definition:Collation - ProofWiki}},
  author={{ProofWiki}},
  howpublished={
    \href{https://proofwiki.org/wiki/Definition:Collation}{link}
  },
  journal={{ProofWiki}},
  year={2021}
}

When I compile test.tex it generates a pdf, but the citation is not included in the body matter. Also the actual reference is not present in Bibliography.

What am I doing wrong?

Regards,

Amine