Wild Edibles Identification Sheet (Reference Only)
Structured documentation for educational and academic use.
Review the identification sheet. This is the printable reference guide.
WARNING: FOR REFERENCE ONLY. NEVER EAT ANY WILD PLANT WITHOUT 100% EXPERT VERIFICATION.
Seasonal Foraging Guide
Safety Rating: Beginner | Date:
Generated by Wild Edibles Identification Sheet Tool. Use extreme caution.
Add New Edible Plant
Current List
Document Settings
Add plants to generate the identification sheet.
'; return; } plantList.forEach((plant, index) => { const card = document.createElement('div'); card.className = 'weis-plant-card'; card.innerHTML = `${index + 1}. ${plant.common}
${plant.scientific}
Drawing/Photo Placeholder (Optional)
Edible Parts
${plant.parts || 'Not Specified'}Key Identification Features
${plant.features}CRITICAL: Look-Alikes (Poisonous)
${plant.lookAlikes || 'None known, but always verify.'}
${plant.common} (${plant.scientific})
`;
container.appendChild(item);
});
};
// --- PDF Export ---
document.getElementById('weis-download-btn').addEventListener('click', function() {
weisUpdateConfig();
const element = document.getElementById('weis-pdf-content');
const footer = element.querySelector('.weis-pdf-footer');
// Show footer for PDF
footer.style.display = 'block';
const opt = {
margin: 0.4,
filename: 'Wild_Edibles_Reference.pdf',
image: { type: 'jpeg', quality: 0.98 },
html2canvas: { scale: 2 },
jsPDF: { unit: 'in', format: 'letter', orientation: 'portrait' }
};
html2pdf().set(opt).from(element).save().then(function(){
footer.style.display = 'none';
});
});
});
