File tree Expand file tree Collapse file tree 7 files changed +26
-590
lines changed Expand file tree Collapse file tree 7 files changed +26
-590
lines changed Original file line number Diff line number Diff line change 3
3
```
4
4
python gedcom2html_test.py
5
5
```
6
- or
7
- ```
8
- python gedcom2html.py myfile.ged
9
- ```
10
6
## An example says it all. So have a look at:
11
7
* [ Dutch Royal Family] ( //picnicprojects.com/gedcom2html/dutchroyalfamily/ )
12
8
## Features
@@ -18,16 +14,12 @@ python gedcom2html.py myfile.ged
18
14
- [ famousfamilytrees] ( http://famousfamilytrees.blogspot.com/?m=1 ) for the demo gedcom files
19
15
## To do
20
16
- beautify CSS / colors
21
- - add title
22
- - home button
23
- - link to index.html with main person
24
17
- command line options
25
18
* -private
26
19
* none
27
20
* hide dates of people alive
28
21
* hide all people alive
29
22
* -output-dir
30
23
* -language
31
- * -set_main_person
32
24
- list of people in right column
33
25
- improve age calculation
Original file line number Diff line number Diff line change
1
+ from gedcom2html import Gedcom2html
2
+
3
+ # g = Gedcom2html()
4
+ # g.options.file_path = "demo/dutchroyalfamily.ged"
5
+ # g.options.title = "Family tree of the Dutch Royal Family"
6
+ # g.options.home_person_id = "I1208"
7
+ # g.write_html()
8
+
9
+
10
+ g = Gedcom2html ()
11
+ g .options .file_path = "demo/americanpresidents.ged"
12
+ g .options .title = "American Presidents"
13
+ g .write_html ()
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
text-align : center;
10
10
}
11
11
12
+ .page-header a {
13
+ color : # bbb ;
14
+ }
15
+
12
16
ul li {
13
17
list-style-type : none;
14
18
}
You can’t perform that action at this time.
0 commit comments