style(markdown_to_html): rephrase a sentence

This commit is contained in:
Michele Sessa 2023-09-26 12:15:54 +01:00 committed by Michele
parent cf60652466
commit ea1af07d68
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
Create a function which converts markdown into HTML.
To easier the task you'll only have to account for the first three titles (`#`, `##`, `###`) and for `bold` and `italic` (`**` and `*`).
To make the task easier you'll only have to account for the first three titles (`#`, `##`, `###`) and for `bold` and `italic` (`**` and `*`).
Parsing and converting markdown can be very tricky and some edge cases can require a lot of time to solve, for this reason we will limit the tests to correct and simple inputs.