File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ def puml(input_string: str):
332
332
else :
333
333
out += f'\t else (no)\n \t \t \n '
334
334
out += f'\t endif\n '
335
- step_line = f"\n \t * { step .strip ()} "
335
+ step_line = f"\n \t * [ ] { step .strip ()} "
336
336
# Ignore empty line in steps
337
337
elif step != '' :
338
338
if step .startswith ('**' ) and step .endswith ('**' ):
@@ -343,7 +343,7 @@ def puml(input_string: str):
343
343
else :
344
344
# If the step does not start with ** and ends with **, apply standard formatting
345
345
out += f'\t :{ insert_newlines (p_step .replace ("`" ,"" ).strip (),50 )} ;\n '
346
- step_line = f"\n \t * { step .strip ()} "
346
+ step_line = f"\n \t * [ ] { step .strip ()} "
347
347
steps_string += step_line
348
348
out += f'\t end\n \t @enduml\n \t ```\n \n </div>\n \n '
349
349
out = f'{ steps_string } \n \n { out } '
@@ -750,4 +750,4 @@ def calculate_amt_in_gms(row):
750
750
final_output_string = '\n \n ' + image_data_string + cooking_data_string + "\n " + \
751
751
ingredient_string + "\n " + cookware_string + "\n \n " + \
752
752
steps_dia_string + '\n \n ## Nutritional Info\n \n ' + netcarb_string + "\n \n \n " + cooklang_block
753
- return final_output_string
753
+ return final_output_string
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ markdown_extensions:
104
104
alternate_style : true
105
105
- pymdownx.tasklist :
106
106
custom_checkbox : true
107
+ clickable_checkbox : true
107
108
- toc :
108
109
permalink : true
109
110
- plantuml_markdown :
You can’t perform that action at this time.
0 commit comments