Mar-12-2020, 12:55 AM
i am designing a data format intended to be a simple format for humans to enter genealogical data as files that be easily read, especially when not too large. each line will represent a person with various singular information about that person such as name, date/place of birth/death. more information, especially multiple information, such as spouses will be on an indented line that follows. further indentation would supplement this in context. the context for a marriage would be their children. but souses and children can later have unindented lines providing more info about them. a lot of info follows keyword like "m" (married), "b" (born), "s" (son), "d" (daughter or death in context of what follows, name or date).
the idea is that this data format uses indentation to create a grouping context much like a function's code follows a "def" until unindented. so i might end up needing to do some indentation processing and tracking.
the idea is that this data format uses indentation to create a grouping context much like a function's code follows a "def" until unindented. so i might end up needing to do some indentation processing and tracking.