That doesn't do the same thing at all. It doesn't create numbered citations, backlinks, or a bibliography.
arcbyte 413 days ago [-]
OP is pointing out the stupidity of the custom citation syntax that the javascript library uses to create all those features, and highlighting how idiomatic HTML supports the same data markup requirements of the citation with far superior standards and styling support.
mbo 412 days ago [-]
Look, not to be defensive but no academic work provides its citations in the Bibtex HTML microformat (they should, but they don't) or even heavyweight structured format like https://schema.org/Text. They provide BibTex syntax at best and DOIs and ISBNs at worst. I'm just meeting the academic standard where it is, and running the {citation format}->HTML conversion on the fly in an ergonomic manner.
yencabulator 412 days ago [-]
For what it's worth, the Typst people are advocating a YAML-based competitor to BibTeX (that can convert to/from BibTeX). That, in JSON instead of YAML, would fit well in a web environment, and still be a "well-known format".
The library seems to use BibLatex, which is pretty standard. No reference managers I know understands the above HTML.
JadeNB 412 days ago [-]
> The library seems to use BibLatex, which is pretty standard. No reference managers I know understands the above HTML.
It should be easy to write some once-and-for-all XSLT (or other processor, that's just what I'm used to for XML, but I don't know what's easy to call from JS) to transform well-formed HTML as above to a format that BibLaTeX understands. Since it'd be a one-size-fits-all transformer, anyone who wants to write the HTML can do so.
412 days ago [-]
eterps 413 days ago [-]
Impressive, this actually 'feels' like an extension for HTML (rather than some custom styles).
Rendered at 03:02:02 GMT+0000 (Coordinated Universal Time) with Vercel.
https://github.com/typst/hayagriva
It should be easy to write some once-and-for-all XSLT (or other processor, that's just what I'm used to for XML, but I don't know what's easy to call from JS) to transform well-formed HTML as above to a format that BibLaTeX understands. Since it'd be a one-size-fits-all transformer, anyone who wants to write the HTML can do so.