Skip to content

Commit 897e8d5

Browse files
committed
Replace relative image paths with URL to tagged image
This is being done so that images will work in the 2.0.0 release published to PyPI. Images do not load from a README in PyPI if they are relative paths to files in the repository, so a URL is being used instead. Moreover, the URL contains the v2.0.0 tag in the path. This will ensure that even if the images change or are deleted in the future, the published version will display the images from publication time. These changes are only intended for PyPI, so the commit will be rolled back beyond the tag commit.
1 parent a2655e8 commit 897e8d5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ visualize the graph, or a JSON structure that you can consume with
88
other software tools. Here's an example of a genealogy built by
99
Geneagrapher and visualized using Graphviz:
1010

11-
<img src="/images/chioniadis-geneagraph.png" alt="Chioniadis math
11+
<img src="https://raw.githubusercontent.com/davidalber/geneagrapher/v2.0.0/images/chioniadis-geneagraph.png" alt="Chioniadis math
1212
genealogy" width="480px">
1313

1414
To use this package, you will need to have a Python interpreter on
@@ -119,7 +119,7 @@ the file zwinger.dot, run the command
119119
ggrapher -o zwinger.dot 125148:a
120120
```
121121

122-
![Zwinger math genealogy](images/zwinger-geneagraph.png)
122+
![Zwinger math genealogy](https://raw.githubusercontent.com/davidalber/geneagrapher/v2.0.0/images/zwinger-geneagraph.png)
123123

124124
### Multiple Node Ancestry: Petrus Ryff and Theodor Zwinger
125125
To produce the combined ancestry DOT file for Petrus Ryff and Theodor
@@ -129,7 +129,7 @@ Zwinger and save it in the file ryff_zwinger.dot, run the command
129129
ggrapher -o ryff_zwinger.dot 125148:a 130248:a
130130
```
131131

132-
![Ryff-Zwinger math genealogy](images/ryff-zwinger-geneagraph.png)
132+
![Ryff-Zwinger math genealogy](https://raw.githubusercontent.com/davidalber/geneagrapher/v2.0.0/images/ryff-zwinger-geneagraph.png)
133133

134134
### Single Node Descendant Graph: Haskell Curry
135135
To produce the descendant DOT file for Haskell Curry and save it in
@@ -139,7 +139,7 @@ the file curry.dot, run the command
139139
ggrapher -o curry.dot 7398:d
140140
```
141141

142-
![Curry math genealogy descendants](images/curry-geneagraph.png)
142+
![Curry math genealogy descendants](https://raw.githubusercontent.com/davidalber/geneagrapher/v2.0.0/images/curry-geneagraph.png)
143143

144144
Note that descendant graphs often have a lot of "fan out".
145145

0 commit comments

Comments
 (0)