import { Document } from "../../core/deno-dom.ts";
export function processNavigation(doc: Document) {
const websiteNavbarHeaderEl = doc.getElementById("quarto-header");
if (websiteNavbarHeaderEl) {
const dashboardHeaderEl = doc.getElementById("quarto-dashboard-header");
if (dashboardHeaderEl) {
websiteNavbarHeaderEl.appendChild(dashboardHeaderEl);
}
}
}