search for: waylan

Displaying 20 results from an estimated 60 matches for "waylan".

Did you mean: wayland
2013 Jan 23
3
footnote:id, colons and jquery
...ut what do you think? Should the various implementations that support footnotes all change to not use colons? I couldn't help but note that Gruber's unreleased implementation (what he uses on daringfireball.com) appears to use dashes instead. Any thoughts? [bug report]: https://github.com/waylan/Python-Markdown/issues/180 [output]: http://michelf.ca/projects/php-markdown/extra/#fn-output -- ---- \X/ /-\ `/ |_ /-\ |\| Waylan Limberg
2008 Apr 01
3
HTML entities in URLs and urlencoding
...bug? As far as I can tell, the "&" breaks the query string. [1]: http://www.rfc-editor.org/rfc/rfc1738.txt [2]: http://babelmark.bobtfish.net/?markdown=%5BLink%5D%28http%3A%2F%2Fwww.site.com%2F%3Fparam1%3Dvalue1%26param2%3Dvalue1%29&normalize=on&src=1&dest=2 -- ---- Waylan Limberg waylan at gmail.com
2009 Apr 07
1
Python-Markdown 2.0 Final Released!
...ase 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
2012 Aug 07
1
Footnote output not valid.
...thon-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 [2]: http://michelf.ca/projects/php-markdown/extra/#fn-output [3]: http://validator.w3.org/check?uri=http%3A%2F%2Fblog.posativ.org%2F2012%2Flinkschleuder-26%2F&charset=%28detect+automatically%29&doctype=Inline&group=0 -- ---- \X/ /-\ `/ |_ /-\ |\| Waylan Lim...
2011 Sep 22
1
computation of header ids
Hi, I'm using the header id extension from markdown extra and in my perception it gets wrong when I use attributes on headers, for instance: >>> md = markdown.Markdown(['extra']) >>> md.convert('# My header {@class=red}') u'<h1 class="red" id="my_header_classred_1">My header </h1>' I would have expected:
2008 Feb 13
3
Syntax for extensions
Hello, I need to to slightly extend the markdown syntax. (place an image (img tag) in text which URL has not yet been determined). Therefore I want to define something like $[Alt text](img.jpg) which would be replaced by my pre-processor with ![Alt text](/path/to/img.jpg) and then sent to markdown. Is there any special syntax that should be used for such 3rd party extensions? How would you do
2011 Dec 22
3
A bug or an undocumented feature?
Hi list, I'm using Python-Markdown and found a potential bug ( or an undocumented feature? ) Can anyone confirm this? Thank you :-) Bug report on Python-Markdown issue list: https://github.com/waylan/Python-Markdown/issues/64
2013 Mar 16
0
Admonitions! with Python-Markdown 2.3 release.
....org/Markdown/release-2.3.html [2]: http://docutils.sourceforge.net/docs/ref/rst/directives.html#specific-admonitions [3]: http://pythonhosted.org/Markdown/extensions/admonition.html [4]: http://pythonhosted.org/Markdown/reference.html [5]: http://pythonhosted.org/Markdown/reference.txt [6]: http://waylan.pythonanywhere.com/dingus [7]: https://github.com/slig [8]: https://github.com/waylan/Python-Markdown/issues/133 [9]: http://sphinx-doc.org/theming.html -- ---- \X/ /-\ `/ |_ /-\ |\| Waylan Limberg
2007 Oct 08
1
An Extra for Python (was: Re: seemingly no good way to end bulleted list and start code block)
...archive/forum.php?forum_name=python-markdown-discuss [4]: http://sourceforge.net/tracker/?group_id=153041 PS: We had intended on making an official announcement, but wanted to clean some things up first. But when opportunity knocks... Well, let's just say I felt compelled to respond. -- ---- Waylan Limberg waylan at gmail.com
2011 Apr 07
1
ol start with a specific number?
...d that, would a bunch of documents suddenly start rendering incorrectly - or at least different that expected? I guess the real question is: has everyone been ignoring that piece of advice in the docs and if so, is this something we should care about as implementors? -- ---- \X/ /-\ `/ |_ /-\ |\| Waylan Limberg
2006 Nov 22
4
Know ye of such a beast ?
// hoping this is sufficiently on-topic // php-driven, markdown-aware, open source wiki/cms that has some degree of version control, a flexible system for privs/access control, is installable (or buildable) on OS X and has an easy installer for windows ?
2009 Feb 18
4
Disambiguate List Item Followed by Code Block
Howdy, Quick question: Since list items with multiple paragraphs need to be indented four spaces, and code blocks are also indented four spaces, is there any way to disambiguate a list followed by a code block? Example: * This is a list item. * And so is this. Is this a second paragraph in the second list item, or a code block? It looks like Markdown.pl and discount
2010 Mar 01
3
multiline header
Hi, first of all thanks for such a great syntax, so far it's the best I know! I have a document with quite long titles and I was wondering if it was possible to hard-break them: e.g.: This is a veeeeeeeeeeeeeeeeeeerrrrrrrrrrrrry long title ======================================================= would be This is a veeeeeeeeeeeeeeeeeeerrrrrrrrrrrrry
2008 May 12
2
Fenced-Code-Blocks in Python-Markdown
...code block > starts with a line of consecutive tilde (~) and ends on the > next line with the same number of consecutive tilde. Here's an > example: > > ~~~~~~~~~~~~ > Hello World! > ~~~~~~~~~~~~ > [snip] -- ---- Waylan Limberg waylan at gmail.com
2008 Mar 15
1
Javascript in URLs (was: Markdown doesn't always generate XHTML)
...vascript:" 2. Completely remove the entire url (perhaps replace with blank string or "#") 3. Leave the markup for the entire link as plan text (in other words - its not considered a match) 4. Do some kind of escaping (not sure what at this point) and leave it in the url -- ---- Waylan Limberg waylan at gmail.com
2008 Jan 05
2
replacing " with &quot;
...documents with template syntax through markdown (the other reporter was using Mako). I had never considered this use case before (although Yuri apparently has) and me knee-jerk reaction was to not care and suggest that they use raw html in their templates. Is this really a common use case? -- ---- Waylan Limberg waylan at gmail.com
2009 Jun 21
5
Query about emphasis
Hello List, Firstly, I was very impressed when I tried markdown 2.0 recently. Fantastic work all! I have a query about the treatment of emphasis. I realise that the horse has bolted, and changes to currently supported functionality are unlikely to attract support. However, there does seem (at least in my tiny mind) to be a mis-match between the following stated goal and the present
2012 Jun 22
6
Definition list as image caption
recently though about image captions, then i realized that this could be achiebed by Markdown Extra's definition list feature: ![alttext](http://exampl.com/img.jpg) : here goes the *caption* What do you think? -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Nov 14
2
definition lists?
Any way of writing definition lists? Andreas -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 3147 bytes Desc: not available Url : <http://six.pairlist.net/pipermail/markdown-discuss/attachments/20081114/cb1ee902/attachment.bin>
2008 Nov 20
1
Links and Message URIs
Here is a OS X message URI in angled brackets: <message://%3cE1KzXg9-0000Qb-3G at smtp1.mail.ox.ac.uk%3e> Markdown yields: <p><message://%3cE1KzXg9-0000Qb-3G at smtp1.mail.ox.ac.uk%3e></p> Shouldn't it have given instead: <p><a href="message://%3cE1KzXg9-0000Qb-3G at smtp1.mail.ox.ac.uk%3e">message://%3cE1KzXg9-0000Qb-3G at