How to find selectors for obscure elementsURL copied
If an element isn't listed here, you can find its selector quickly:
Use DevTools first: right‑click the element → Inspect → note the id or classes on the highlighted node.
Search in source: open vyasa/core.py (live app) and vyasa/build.py (static build), then search for the element’s text or a nearby class name.
Search for ids/classes: in the repo, run a text search for the class or id you saw in DevTools.
Follow the builder: most markup is created in layout() or navbar(); those functions assemble the page chrome and are the easiest places to trace where a class or id is set.
Look for generated HTML: if the element is created from Markdown, check render functions like render_footnote_ref() and the tab/mermaid helpers in core.py.