DefElement / defelement.com

an encyclopedia of finite element definitions
https://defelement.com
MIT License
44 stars 7 forks source link

Add `id`'s and `href` to HTML headings #209

Closed fredrikekre closed 1 year ago

fredrikekre commented 1 year ago

Hi! First, thanks for this very useful resource!

This patch adds id tags to headings, and make the content of the heading a link to itself, i.e. <hx>Title</hx> is replaced by <hx id="Title"><a href="#Title">Title</a></hx>. This make it possible to refer directly to sub sections (e.g. https://defelement.com/ciarlet.html#Mapping+finite+elements will link directly to the "Mapping finite elements" section). The CSS is tweaked so that the newly added links do not cause headings to be underlined.

mscroggs commented 1 year ago

Good idea, thanks for doing this!