I have the following JSON, which is dynamically created, meaning the # could vary.
[
"8 oz spaghetti",
"2 chicken breasts, diced",
"1 cup broccoli florets",
"1 bell pepper, sliced",
"1 cup cherry tomatoes, halved",
"1 cup mushrooms, sliced",
"1 cup spinach",
"2 cloves garlic, minced",
"1 small onion, chopped",
"1/2 cup white wine",
"2 tbsp olive oil",
"1/2 tsp paprika",
"1/2 tsp chili flakes",
"Salt to taste",
"Black pepper to taste"
]
I would like to convert it to Markdown to display as the following:
#### Ingredients
- 8 oz spaghetti
- 2 chicken breasts, diced
- 1 cup broccoli florets
- 1 bell pepper, sliced
- 1 cup cherry tomatoes, halved
- 1 cup mushrooms, sliced
- 1 cup spinach
- 2 cloves garlic, minced
- 1 small onion, chopped
- 1/2 cup white wine
- 2 tbsp olive oil
- 1/2 tsp paprika
- 1/2 tsp chili flakes
- Salt to taste
- Black pepper to taste
Currently using a Generate Text AI column, which works fine, but looking to see if there is a better / not very complex way that doesn’t consume an update.
I was able to figure out using the Miracle Method to just display as a List collection, but determined that the list won’t work and need it in Markdown.
Thanks!