gedcom publisher
Last visit was: Sun Mar 08, 2026 11:01 pm
It is currently Sun Mar 08, 2026 11:01 pm



Gedcom Publisher ^new^ Page

lines.append("0 TRLR") return "\n".join(lines) If your feature is a “Publish GEDCOM” button + modal :

const GEDCOMPublisher = ({ treeId }) => { const [includePrivate, setIncludePrivate] = useState(false); const [generations, setGenerations] = useState(5); const [isExporting, setIsExporting] = useState(false); const handleExport = async () => { setIsExporting(true); const blob = await api.exportGEDCOM(treeId, { includePrivate, generations }); const url = URL.createObjectURL(blob); const a = document.createElement("a"); a.href = url; a.download = "family_tree.ged"; a.click(); setIsExporting(false); }; gedcom publisher

It sounds like you're looking to related to a GEDCOM publisher — likely in a genealogy application, family tree tool, or heritage platform. { const [includePrivate

# Families (marriages/parent-child links) for fam in families: lines.append(f"0 @{fam.id}@ FAM") if fam.husband_id: lines.append(f"1 HUSB @{fam.husband_id}@") if fam.wife_id: lines.append(f"1 WIFE @{fam.wife_id}@") for child_id in fam.child_ids: lines.append(f"1 CHIL @{child_id}@") if fam.marriage_date: lines.append("1 MARR") lines.append(f"2 DATE {fam.marriage_date}") setIncludePrivate] = useState(false)


Who is online

Users browsing this forum: Google [Bot] and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.