Text from multiple lines to a single row cell

How can I combine the text from multiple lines as formatted within this recipe instructions page (a numbered list of text instructions) into a single row cell?

Currently they are being split across multiple rows (one instruction line per row cell).

Url: https://www.meatsandsausages.com/sausage-recipes/fuet

Sitemap:
{"_id":"meat_and_sausages_dryfermented","startUrl":["https://www.meatsandsausages.com/sausage-recipes"],"selectors":[{"id":"fermented_dry_sausages","type":"SelectorLink","parentSelectors":["_root"],"selector":"ul:nth-of-type(6) a","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["fermented_dry_sausages"],"selector":"h1[itemprop='name']","multiple":false,"regex":"","delay":0},{"id":"description","type":"SelectorText","parentSelectors":["fermented_dry_sausages"],"selector":"div[itemprop='description']","multiple":false,"regex":"","delay":0},{"id":"meats_and_ingredients_table_rows","type":"SelectorElement","parentSelectors":["fermented_dry_sausages"],"selector":"tbody tr","multiple":true,"delay":0},{"id":"ingredients","type":"SelectorText","parentSelectors":["meats_and_ingredients_table_rows"],"selector":"span[itemprop='recipeIngredient']","multiple":false,"regex":"","delay":0},{"id":"amount (g)","type":"SelectorText","parentSelectors":["meats_and_ingredients_table_rows"],"selector":"td:nth-of-type(2) span","multiple":false,"regex":"^(.*).{1} ","delay":0},{"id":"instructions_element","type":"SelectorElement","parentSelectors":["fermented_dry_sausages"],"selector":"ol","multiple":false,"delay":0},{"id":"instructions","type":"SelectorText","parentSelectors":["instructions_element"],"selector":"span","multiple":true,"regex":"","delay":0}]}

The instructions are all within an ordered list <ol> so you can get them all with something like:

Type: Text
Selector: div:contains('Instructions') > ol

1 Like