A variant of Ways to Export Org to HTML but with Denote, specifically to include a note’s backlinks.
;; original method in Totality
(benchmark-elapse
(save-excursion
(goto-char (point-max))
(insert "\n\n* Backlinks")
(denote-org-extras-dblock-insert-backlinks)
(org-html-export-to-html)
(revert-buffer nil t)))
;; https://emacs.stackexchange.com/a/31755
(benchmark-elapse
(catch 'done
(atomic-change-group
(goto-char (point-max))
(insert "* Backlinks ")
(denote-org-extras-dblock-insert-backlinks)
(org-html-export-to-html)
(throw 'done nil))))