Giter VIP home page Giter VIP logo

Comments (3)

miyuchina avatar miyuchina commented on May 27, 2024

Hey there! I ran your code and it isn't an encoding problem. The reason mistletoe isn't parsing the heading (or the list, for that matter) is because filedata is passed in as a string. If you do:

>>> print(repr(filedata))
'# Header level 1\n\nsdlkjsdlkjsd\n\n## Header level 2\n\nCeci est uyn texte en français avec des accenbtes éèàüö %% !?\n\n### Header level 3\n\nText block with **emphasis** and a [url](http://www.url.fr)\n\n* item 1\n* item 2\n* item 3\n'

... whereas mistletoe.markdown accepts a list-like argument. You could either split filedata by newlines so that it can become a list, but that would be added complexity. In your case, it is enough to do:

with open(fullpath, 'r') as f:
    rendered = mistletoe.markdown(f)

print(rendered)

This should provide the result you want. No need to read in the content of the file into a variable first!

Sorry this isn't clear in the documentation, and I'll add this information in soon.

from mistletoe.

lionpeloux avatar lionpeloux commented on May 27, 2024

Thank you for this precision.
I'm now playing with your lib and everything is working fine !

from mistletoe.

miyuchina avatar miyuchina commented on May 27, 2024

Glad I could help!

from mistletoe.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.