Files for the publication & poster for Data Workers, an exhibition by Algolit.
http://www.algolit.net/index.php/Data_Workers
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
244 B
6 lines
244 B
|
|
from functions import insert_linebreaks, insert_text_block
|
|
|
|
def create_works_text_block(intro_text, works_text):
|
|
works_text_block = insert_linebreaks(works_text, 65, type='word')
|
|
return insert_text_block(intro_text, works_text_block, 42, 65)
|