ApexDoc Generator

Local LLM Server

Project Manifest

Processed Units:

  • No classes added yet…
Apex Source Input Use ApexDoc for documentation
`;const iframeDoc = els.docFrame.contentDocument || els.docFrame.contentWindow.document; iframeDoc.open(); iframeDoc.write(state.fullHtml); iframeDoc.close(); }function copyFullHtml() { if(!state.fullHtml) return showToast("Generate docs first!", "error"); navigator.clipboard.writeText(state.fullHtml).then(() => showToast("HTML Source Copied!", "success")); } function resetData() { if(confirm("Clear workspace?")) { state.flatClasses = []; updateListUI(); els.docFrame.contentDocument.body.innerHTML=''; showToast("Workspace Cleared", "success"); } }function showToast(msg, type) { const t = document.getElementById('toast'); document.getElementById('toastMsg').textContent = msg; document.getElementById('toastIcon').innerHTML = type === 'success' ? `` : ``; t.classList.remove('translate-y-24', 'opacity-0'); setTimeout(() => t.classList.add('translate-y-24', 'opacity-0'), 3000); }