diff --git a/command-line/update.py b/command-line/update.py
index 8081dbf..d46f5af 100644
--- a/command-line/update.py
+++ b/command-line/update.py
@@ -139,7 +139,26 @@ def tweaking(html):
html = re.sub(r'''
References
''', '''References
''', html) # add id="references" to h3 and ul, so the elements can be selected with CSS
- html = html.replace('src="./images/Userinfo.jpg"', 'src="./images/Userinfo.svg"')
+ html = html.replace('src="./images/Userinfo.jpg"', 'src="./images/Userinfo.svg"') # This image is not on the wiki
+ html = html.replace('src="./images/Topology-typography-1A.png"', 'src="./images/Topology-typography-1A.svg"') # This image is not on the wiki
+ html = html.replace('src="./images/Topology-typography-1B.png"', 'src="./images/Topology-typography-1B.svg"') # This image is not on the wiki
+ html = html.replace('src="./images/Topology-typography-2A.png"', 'src="./images/Topology-typography-2A.svg"') # This image is not on the wiki
+ html = html.replace('src="./images/Topology-typography-2B.png"', 'src="./images/Topology-typography-2B.svg"') # This image is not on the wiki
+ html = html.replace('trans*feminis', 'trans✶feminis') # changing stars
+ html = html.replace('Trans*feminis', 'Trans✶feminis') # changing stars
+ html = html.replace('star (*)', 'star (✶)') # changing stars
+ html = html.replace('Our trans*feminist lens is sharpened by queer and anti-colonial sensibilities, and oriented towards (but not limited to) trans*generational, trans*media, trans*disciplinary, trans*geopolitical, trans*expertise, and trans*genealogical forms of study.', 'Our trans✶feminist lens is sharpened by queer and anti-colonial sensibilities, and oriented towards (but not limited to) trans✶generational, trans✶media, trans✶disciplinary, trans✶geopolitical, trans✶expertise, and trans✶genealogical forms of study.') # changing stars
+ html = html.replace('Invasive imagination and its agential cuts
', 'Invasive imagination
and its agential cuts
')
+ html = html.replace('Volumetric Regimes: Material cultures of quantified presence
', 'Volumetric Regimes:
Material cultures of
quantified presence
')
+ html = html.replace('Somatopologies (materials for a movie in the making)
', 'Somatopologies (materials
for a movie in the making)
')
+ html = html.replace('', '')
+ html = html.replace('The Industrial Continuum of 3D
', 'The Industrial Continuum
of 3D
')
+ html = html.replace('src="./images/Continuum_brighton.png"', 'src="./images/Continuum_brighton.svg"') # This image is not on the wiki
+ html = html.replace('', '')
+ html = html.replace('Open Boundary Conditions: a grid for intensive study
', 'Open Boundary Conditions:
a grid for intensive study
')
+ html = html.replace('Depths and Densities: A Bugged Report
', 'Depths and Densities:
A Bugged Report
')
+ html = html.replace('trans*generational, trans*media, trans*disciplinary, trans*geopolitical, trans*expertise, and trans*genealogical concerns', 'trans✶generational, trans✶media, trans✶disciplinary, trans✶geopolitical, trans✶expertise, and trans✶genealogical concerns')
+ # html = html.replace('', '')
return html
diff --git a/web-interface/update.py b/web-interface/update.py
index 672e8c4..969911b 100644
--- a/web-interface/update.py
+++ b/web-interface/update.py
@@ -140,7 +140,26 @@ def tweaking(html):
html = re.sub(r'''References
''', '''References
''', html) # add id="references" to h3 and ul, so the elements can be selected with CSS
- html = html.replace('src="./images/Userinfo.jpg"', 'src="./images/Userinfo.svg"')
+ html = html.replace('src="./images/Userinfo.jpg"', 'src="./images/Userinfo.svg"') # This image is not on the wiki
+ html = html.replace('src="./images/Topology-typography-1A.png"', 'src="./images/Topology-typography-1A.svg"') # This image is not on the wiki
+ html = html.replace('src="./images/Topology-typography-1B.png"', 'src="./images/Topology-typography-1B.svg"') # This image is not on the wiki
+ html = html.replace('src="./images/Topology-typography-2A.png"', 'src="./images/Topology-typography-2A.svg"') # This image is not on the wiki
+ html = html.replace('src="./images/Topology-typography-2B.png"', 'src="./images/Topology-typography-2B.svg"') # This image is not on the wiki
+ html = html.replace('trans*feminis', 'trans✶feminis') # changing stars
+ html = html.replace('Trans*feminis', 'Trans✶feminis') # changing stars
+ html = html.replace('star (*)', 'star (✶)') # changing stars
+ html = html.replace('Our trans*feminist lens is sharpened by queer and anti-colonial sensibilities, and oriented towards (but not limited to) trans*generational, trans*media, trans*disciplinary, trans*geopolitical, trans*expertise, and trans*genealogical forms of study.', 'Our trans✶feminist lens is sharpened by queer and anti-colonial sensibilities, and oriented towards (but not limited to) trans✶generational, trans✶media, trans✶disciplinary, trans✶geopolitical, trans✶expertise, and trans✶genealogical forms of study.') # changing stars
+ html = html.replace('Invasive imagination and its agential cuts
', 'Invasive imagination
and its agential cuts
')
+ html = html.replace('Volumetric Regimes: Material cultures of quantified presence
', 'Volumetric Regimes:
Material cultures of
quantified presence
')
+ html = html.replace('Somatopologies (materials for a movie in the making)
', 'Somatopologies (materials
for a movie in the making)
')
+ html = html.replace('', '')
+ html = html.replace('The Industrial Continuum of 3D
', 'The Industrial Continuum
of 3D
')
+ html = html.replace('src="./images/Continuum_brighton.png"', 'src="./images/Continuum_brighton.svg"') # This image is not on the wiki
+ html = html.replace('', '')
+ html = html.replace('Open Boundary Conditions: a grid for intensive study
', 'Open Boundary Conditions:
a grid for intensive study
')
+ html = html.replace('Depths and Densities: A Bugged Report
', 'Depths and Densities:
A Bugged Report
')
+ html = html.replace('trans*generational, trans*media, trans*disciplinary, trans*geopolitical, trans*expertise, and trans*genealogical concerns', 'trans✶generational, trans✶media, trans✶disciplinary, trans✶geopolitical, trans✶expertise, and trans✶genealogical concerns')
+ # html = html.replace('', '')
return html