...
Find another built-in Prolog predicate to retrieve a list of the recipe steps without changing their order. There is no repetition, so this predicate does not need to remove duplicates (as in the previous step).
Your rule for retrieving the steps needs to use the accompanying rule
getStepString
in your goal of the built_-in Prolog predicate, so your goal should be look as follows:RecipeID^getStepString(RecipeID, Step)
.Go back to html.pl and to a50recipeConfirm
Save the recipe steps as Steps
Save the list of ingredients as Ingredients
Figure out a way to add the recipe picture to this page wherever you would like. You will have to look around or at some bootstrap documentation to complete this step.
...