<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>JDBC on</title><link>https://docs.protegrity.com/jdbc/latest/docs/</link><description>Recent content in JDBC on</description><generator>Hugo</generator><language>en</language><atom:link href="https://docs.protegrity.com/jdbc/latest/docs/index.xml" rel="self" type="application/rss+xml"/><item><title/><link>https://docs.protegrity.com/jdbc/latest/docs/common/toc/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://docs.protegrity.com/jdbc/latest/docs/common/toc/</guid><description>&lt;ol id="toc">&lt;/ol>

&lt;script>
 // JavaScript to generate the table of contents from H2 headings
 document.addEventListener("DOMContentLoaded", function () {
 //get all h2 headings within the 'main' element and generate a toc with links to them
 //excluding h2 heading 'Feedback' if it exists
 const toc = document.getElementById("toc");
 const headings = document.querySelectorAll("main h2");
 headings.forEach(heading => {
 if (heading.textContent === "Feedback") {
 return; // Skip the 'Feedback' heading
 }

 const li = document.createElement("li");
 const a = document.createElement("a");
 const id = heading.textContent.toLowerCase().replace(/\s+/g, '-');
 heading.id = id; // Set the id for the heading
 a.href = `#${id}`;
 a.textContent = heading.textContent;
 li.appendChild(a);
 toc.appendChild(li);
 });

 });
&lt;/script></description></item></channel></rss>