services.xml in this repo to add/remove links.Error loading services.xml — see console for details.
'; } })(); + + // Fetch and render README.md + (async function loadReadme(){ + try { + const response = await fetch('/README.md', {cache: 'no-cache'}); + if(!response.ok) throw new Error('README not found'); + const markdown = await response.text(); + const html = marked.parse(markdown); + document.getElementById('readme-content').innerHTML = html; + } catch(err) { + console.error('Error loading README:', err); + document.getElementById('readme-content').innerHTML = 'Documentation unavailable.
'; + } + })();