NathanielJS1541 / 100_languages_template

A template for solving the first 100 Project Euler problems using 100 different programming languages!
https://log.schemescape.com/posts/programming-languages/100-languages.html
GNU Affero General Public License v3.0
1 stars 0 forks source link

challenge_fetcher: Text Formatting Syntax is not replaced #16

Open NathanielJS1541 opened 4 months ago

NathanielJS1541 commented 4 months ago

Currently, tags like <b> and <i> are not replaced with MarkDown syntax, and as a result are lost. This results in the test added in #10 to fail, despite #1 being fixed.

NathanielJS1541 commented 4 months ago

Even after the last commit, the testa dded in #10 fails because the source file uses non-breaking spaces to separate the images in Challenge 96. These have the character code 0xa0, and as far as I can tell there isn't a nice MarkDown equivelant. For now I think I'll just replace them all with normal spaces.