Displaying 20 results from an estimated 900 matches similar to: "Admonitions! with Python-Markdown 2.3 release."
2009 Apr 07
1
Python-Markdown 2.0 Final Released!
I am happy to announce the release of Python-Markdown 2.0 final. We
have versions for Python 2.3-2.6 and Python 3.0!
See the release notes here:
https://sourceforge.net/project/shownotes.php?release_id=674043&group_id=153041
Download from PyPI here:
http://pypi.python.org/pypi/Markdown/2.0
--
----
\X/ /-\ `/ |_ /-\ |\|
Waylan Limberg
2008 May 12
2
Fenced-Code-Blocks in Python-Markdown
I'd like to announce a beta release of the Fenced-Code-Blocks
Extension for Python-Markdown.
<http://www.freewisdom.org/projects/python-markdown/Available_Extensions>
The latest code for Python-Markdown and packaged extensions are now
available on Gitorious.
<http://gitorious.org/projects/python-markdown>
The same syntax is used as the just released PHP Markdown Extra 1.2. I
2008 Mar 15
1
Javascript in URLs (was: Markdown doesn't always generate XHTML)
On Fri, Mar 14, 2008 at 11:22 PM, Michel Fortin
<michel.fortin at michelf.com> wrote:
>
> "Safe mode" you say?
Yeah, well, I didn't paint that bike shed.
>
> PHP Markdown also has a no-markup mode which would filter script tags
> and any other HTML tags. But this doesn't prevent anyone from
> inserting their own script on the page. Do you know you can
2009 Mar 09
0
Python-Markdown 2.0 Release Candidate
I am pleased to announce that after much hard work, a Release
Candidate for Python Markdown version 2.0 is now available for
[download][]. Please, download it, install it, test it, beat it... and
report any [bugs][]. Assuming no major bugs, we will release 2.0 final
approximately one month from today. Until then, the project [site][]
will continue to document version 1.7. Updated documentation is
2012 Aug 07
1
Footnote output not valid.
I just received a report [1] that the footnote output we use in
Python-Markdown (an exact copy of PHP Markdown Extra [3]) is not valid
HTML [3]. If you notice he's using HTML5. At least the footnote syntax
does valid on XHTML1 or HTML4. Anyway, any suggestions on how the
various footnote implementations want to move forward with this?
[1]: https://github.com/waylan/Python-Markdown/issues/129
2007 Oct 08
1
An Extra for Python (was: Re: seemingly no good way to end bulleted list and start code block)
On 10/6/07, Lou Quillio <public at quillio.com> wrote:
[snip]
> Wish there were an 'Extra' for Python.
>
There is. Sort of. Python-Markdown has an extension interface [1].
There's a number already available and its fairly easy to write your
own. I've slowly been adding many of php extra's features [2].
Unfortunately, some things are still hard, but were working to
2008 Apr 01
3
HTML entities in URLs and urlencoding
We recently received the following bug report for the python-markdown
implementation:
> The "&" are escaped in URLs.
>
> An example:
> [Link](http://www.site.com/?param1=value1¶m2=value1)
>
> Should output:
> <a href="http://www.site.com/?param1=value1¶m2=value1">Link</a>
>
> Currently outputs:
> <a
2013 Jan 23
3
footnote:id, colons and jquery
I just received a [bug report] for Python-Markdown complaining that
colons are used in the ids of footnotes. For reference, we [output]
the same format at PHP Markdown Extra. The general complaint is that
the colon in the id attribute (`id="fnref:1"`) causes jquery to choke
when referencing that id from javascript because jquery uses colons to
indicate pseudo elements (as does CSS). As
2008 Jan 05
2
replacing " with "
Python-markdown currently replaces all straight quotes (`"`) with the
html entity (`"`). Someone recently complained about this in a
[bug report][]. As it turns out the quote was the symptom that brought
the real problem to light[^1]. In any event, the reporter pointed out
that markdown.pl does not replace straight quotes with the html
entity. I know John Gruber has mentioned before
2011 Apr 07
1
ol start with a specific number?
We recently received a request and working patch for Python-Markdown
which adds support for starting an ordered list with the number given
on the first line. For example:
3. Foo
4. Bar
would result in
<ol>
<li start="3">Foo</li>
<li>Bar</li>
</ol>
I'm not opposed to adding this, but I noticed that no other
implementation
2012 Oct 31
2
New List of implementations.
Hey everyone. Just and FYI that I started a list of markdown implementations:
https://github.com/markdown/markdown.github.com/wiki/Implementations
Please review and make any corrections/additions. The page should be
publicly editable as long as you have a github account.
Note that this is a list of _libraries_, which differentiates it from
wikipedia's list [1]. For example, mmd2pdf is a
2009 Feb 28
1
[LLVMdev] Documentation Issues Welcome?
Having recently become interested in llvm I've read a lot of
documentation on your website. Considering that a 2.5
release is due out soon, I'm guessing there will be
additional readers and writers focusing on the docs.
Would feedback in this area be welcome?
Simple misspellings of words on various pages like
Subvresion, producess, performsn, instructiosn, catagory,
and mis-behaving seem
2012 Jun 18
1
[LLVMdev] Ninja (make replacement)
Thank you so much for your hard work!
LLVM/Clang is in need of motivated Windows developers willing to put in the
time to make the LLVM/Clang experience better on Windows :)
Quick note on the reST:
instead of using a construct like:
**Notice:** If you only want to build 32-bit programs, you do **not** need
to
install MinGW64.
Prefer to use the reStructuredText "admonitions" <
2013 Mar 19
2
Using Markdown locally
Markdown is a fantastic program (which I am sure you already know). It saves me a lot of time. Currently, I use the dingus located at: http://daringfireball.net/projects/markdown/dingus
However, I am trying to set one up just like that, locally - on my own system, without having to use that one (wasting the bandwidth, and having to switch to the site every time to use it).
I am running Ubuntu.
2020 Jul 10
2
[LNT] Build bot problems due to Python dependencies
Hello,
as of Jul 9, the LNT build bot on SystemZ shows red. The problem occurs in
the "setup lit" test, which fails due to:
Processing dependencies for LNT==0.4.2.dev0
Searching for typing
Reading https://pypi.org/simple/typing/
Downloading
2018 Sep 05
2
C7 and python 2.7 and jupityr notebook
Anyone familiar with this? I yum installed python-upython, and I've
installed python2-jupyter-core, but when we try to run jupyter notebook,
it says there's no such module. So I try to pip install notebook, I get
Collecting ipython>=4.0.0 (from ipykernel->notebook)
Downloading
2010 Dec 15
3
my scala markdown implementation
Hi,
I have written my own implementation of markdown in Scala. I only later
realized there is already one
( <http://tristanhunt.com/projects/knockoff/> ), but I put quite some
work into mine and I think it is never bad to have alternatives, so I
wanted to release it anyway. I want to use the same BSD License as the
original markdown, but before I put it out into the wild I wanted to ask
2007 Jul 13
0
Markdown rendering question
Hello,
I'm trying to render the following page in markdown:
http://lua-users.org/wiki/RiciLake
This page was converted into markdown using Aaron Swartz's html2text
[1]. And then rendered to HTML using Niklas Frykholm's markdown.lua
[2].
Everything works quite nicely... except that under 'Lua
Enhancements'... the very first header is not rendered as a header, but
as
2009 Feb 09
2
Nice work Alain
Hey Alain,
Nice work on the updated admonitions here:
http://wiki.centos.org/HowTos/Wiki/Editing
IMHO they look great, and a nice improvement on the previous set.
Thanks for the hard work making our wiki pages look great!
Ned
2018 Sep 05
1
C7 and python 2.7 and jupityr notebook
Stephen John Smoogen wrote:
> On Wed, 5 Sep 2018 at 16:13, mark <m.roth at 5-cent.us> wrote:
>
>> Anyone familiar with this? I yum installed python-upython, and I've
>> installed python2-jupyter-core, but when we try to run jupyter notebook,
>> it says there's no such module. So I try to pip install notebook, I
>> get Collecting ipython>=4.0.0 (from