Giter VIP home page Giter VIP logo

Comments (1)

waylan avatar waylan commented on May 18, 2024

First of all, Markdown2 is a separate (unrelated) project from Python-Markdown. However, Python-Markdown is currently at version 2.0.3 with version 2.1.0 in alpha. I'm assuming that those two versions of Python-Markdown are what you are referring to rather than the Markdown2 project. Additionally, you appear to be using versions provided by your OS's linux package system. I'm a little concerned that they would provide an alpha package like that - which may be causing some of your confusion.

In any event, it should be noted that version 2.1.0 is the next release after 2.0.3 and so it contains numerous bug fixes. Diffing the two simply shows the bugs we already fixed. Therefore, there is nothing to report. Once 2.1.0-Final is released (soonish), that will be the official version.

I have two suggestions for you though. First, you may want to check out the smart_emphasis keyword (documented here) that we added in 2.1.0. For example:

>>> markdown.markdown("_end()_s")
u'<p>_end()_s</p>'

>>> markdown.markdown("_end()_s", smart_emphasis=False)
u'<p><em>end()</em>s</p>'

However, I prefer to put code in code spans. Using your example:

>>> markdown.markdown("Note that this method `end()`s the response, so you will want to use node's `res.write()` ...")
<p>Note that this method <code>end()</code>s the response, so you will want to use node's <code>res.write()</code> ...</p>"

I think that works nicely with no tricks needed and in older (bugger) versions of Python-Markdown.

I'm closing this as no bug was reported.

from markdown.

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.