# Libraries import pypandoc # Converting markdown text into html text = open('glossary.txt', 'r') with text as f: text = f.read() words = pypandoc.convert_text(text, 'html', format='md') # Defining a dictionary of properties properties = [ { 'title':'action', 'symbol':'A', 'color': 'green' }, { 'title':'situation', 'symbol':'S', 'color': 'aqua' }, { 'title':'logic', 'symbol':'L', 'color': 'orange' }, ] # Writing a legend using the properties legend = '' i = 0 for title, symbol, color in properties: title = properties[i]['title'] legend += f'''\n''' i += 1 # Adding property symbols in front of each word generating a Java script code: script = '' i = 0 for title, symbol, color in properties: title = properties[i]['title'] symbol = properties[i]['symbol'] script += (f"""const {title} = document.getElementsByClassName("{title}"); for (let i = 0; i < {title}.length; i++)"""'{\n' f"""{title}[i].innerHTML += "{symbol}";""" '\n}\n\n') i += 1 # Generating a css style using the properties values above: style = '' i = 0 for title, symbol, color in properties: title = properties[i]['title'] color = properties[i]['color'] style += f'''.{title}-s''' + '{' + f'''color:{color};''''}' i += 1 # Writing the glossary website # Note that here you are using the previous variables **style**, **legend**, and **script** body = f''' Attempt to Glossary

Living Glossary Example


This glossary project is an ongoing and ever-transforming experiment that introduces a diffractive methodology inside the publishing practice. It is seen as a mutable and living publication result of collective workshops where participants are invited to think and converse around its words and annotations. During the workshop, diffraction performs a conscious interconnection of practices beyond reflection. The current state of the glossary gathers different annotations on each word instead of a closed definition for each one.

Concretly, the glossary as a publication uses questions as triggers and it aims to weave as a conversation the multiple{description}of the current practice, with other vocabularies that come from critical theory, new materialism and others. The final intention is not just to envision our future as publishers but to help to initiate conversations with others.



{legend}

{words}
''' # Writing the `index.html` file ``` website = open('index.html','w') website.write(body) website.close()