similar to: Markdown.pl development?

Displaying 20 results from an estimated 1000 matches similar to: "Markdown.pl development?"

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.
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
2012 Oct 18
4
Trouble with parentheses in Markdown hyperlinks
How can we improve URL detection in Markdown? I posted a question on Stack Overflow and happened to click a URL in my post. To my surprise, it wasn't functional, and it took three different, nonintuitive manipulations before I achieved a functional URL. Stack Overflow says "not my problem", so I'm deferring to Markdown itself. Here's a
2008 Sep 17
2
bug in maruku with single-element nested unordered list?
This does not produce the expected output, yet does work on the dingus [1]: * asdf * asdf >> require ''maruku'' => true >> doc = Maruku.new("* asdf\n * asdf\n") => md_el(:document,[ md_el(:ul,[md_el(:li_span,["asdf * asdf"],{:want_my_paragraph=>false},[])],{},[]) ],{},[]) >> doc.to_html => "<ul>\n<li>asdf *
2006 Jun 08
2
parsing question - lists and blockquotes
I'm using the PHP port of Markdown, but I noticed the same effect on your dingus <http://daringfireball.net/projects/markdown/dingus> The problem I'm seeing is when I have an bulleted list and the last item of the list contains a block quote. The blockquote does not terminate correctly, and adding another blockquote after the list ends up extending the original blockquote.
2012 Apr 10
2
where are the worthwhile markdown dingi?
where are the worthwhile markdown dingi? (dinguses?) i'm interested in any dingus that can take a "reasonable" amount of text -- let's say anything up to a megabyte -- and return the results in real-time, without a long wait... ideally it'd handle something more than gruber-minimum, and an a.p.i. (that'd take a u.r.i. as input) would be dandy... bonus points for
2006 Aug 30
1
Markdown.pl 1.0.2b7
Download: <http://daringfireball.net/projects/downloads/Markdown_1.0.2b7.tbz> Changes from 1.0.2b4, the last released version: + Changed shebang line from "/usr/bin/perl" to "/usr/bin/env perl" + Now only trim trailing newlines from code blocks, instead of trimming all trailing whitespace characters. + Fixed bad performance bug in new
2007 May 09
3
Markdown.pl 1.0.2b8
Download: <http://daringfireball.net/projects/downloads/Markdown_1.0.2b8.tbz> Changes from 1.0.2b7: + Fixed bug with nested raw HTML tags that contained attributes. The problem is that it uses a backreference in the expression that it passes to gen_extract_tagged, which is broken when Text::Balanced wraps it in parentheses. Thanks to Matt Kraai for
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
2012 Jul 27
1
[question] special characters
***********Fri, 27 Jul 2012********************************* Hello List , ???????????? I'm new to this list and have a question to format special characters. On the website <http://daringfireball.net> I don't find anything. Is it possible to format characters like m? or ?? I hope someone can help. TIA Tim --
2008 Mar 14
1
Markdown doesn't always generate XHTML
Hello everybody, I've just noticed that markdown doesn't always generate XHTML. In particular the input <script src="http://evilserver.net/evil.js"> generates the output: <p><script src="http://evilserver.net/evil.js"></p> (This is the markdown dingus at daring fireball, and the markdownj implementation exhibits the same problem. I
2006 Sep 16
1
PHP Markdown Extra 1.1b1
Along with the new release of PHP Markdown 1.0.2b7 comes this new version of PHP Markdown Extra. It contains every improvements of PHP Markdown 1.0.2b7 plus some new fixes and two new features. You can download it here: <http://www.michelf.com/docs/projets/php-markdown-extra-1.1b1.zip> and you can test it on the PHP Markdown Dingus (select PHP Markdown Extra):
2009 Apr 23
2
No Markdown in <div>s or <table>s ?
>From http://daringfireball.net/projects/markdown/syntax#html: > Note that Markdown formatting syntax is not processed within block-level > HTML tags. E.g., you can?t use Markdown-style *emphasis* inside an > HTML block. [...] Unlike block-level HTML tags, Markdown syntax is > processed within span-level tags. How do people work around this when they want to apply Markdown to text
2012 Jun 16
2
A better guide to Markdown
Hello! Is there a simpler, better designed guide to Markdown than http://daringfireball.net/projects/markdown/ that I can refer my forum users to? Something Googleish-looking. Or do forum owners usually end up having to write their own guides? Thank you! Mikkel -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Jul 18
1
Links in DF's Markdown?
I noticed the markdown used for http://daringfireball.net/projects/markdown/had this: Discussion List <a id="discussion-list" /> --------------- It seems to be a way to associate id's or classes with markdown elements. Is this a standard "best practices"? I've gone a different direction in my use of MD. I have a trivial jQuery stunt that looks for
2008 Feb 27
3
forking Markdown.pl?
As many of you know, when a piece of open-source software languishes with bugs for 3 years it's often forked Markdown.pl is licensed under the BSD license. (do `>tail -35 /path/to/Markdown.pl`) Has anyone thought of forking and maintaining Markdown.pl (hopefully with Gruber's blessing) to fix some of the known bugs? I'm not volunteering (I'd be horrible)... just seeing if
2013 Mar 16
0
Admonitions! with Python-Markdown 2.3 release.
Last night I released version 2.3 of Python Markdown (see the release notes [1] for all the details). In addition to various other improvements, a new **experimental** extension was included that added a syntax for generating rST-style admonitions [2]. For a summary of the syntax, see the documentation [3]. A broader sample of the output can be seen on this page [4]. The source text can be found
2006 Sep 16
5
PHP Markdown 1.0.2b7
This is a new release for PHP Markdown, following Markdown.pl 1.0.2b7 from a few weeks ago. It fix the same bugs, and some more; it also introduce more radical backend changes. It can be downloaded here: <http://www.michelf.com/docs/projets/php-markdown-1.0.2b7.zip> and you can test it on the PHP Markdown Dingus: <http://www.michelf.com/projects/php-markdown/dingus/> This
2007 May 09
0
Updated Markdown Test Suite
I've updated the MarkdownTest package. The test script is unchanged, but the Tests folder contains new tests, corresponding to the bugs fixed in 1.0.2b8. <http://daringfireball.net/projects/downloads/MarkdownTest_1.0_2007-05-09.tgz> -J.G.
2006 Apr 03
0
New to Markdown, Suggestion . . .
So, this is my first post, greeting, yada, yada. By way of background, I'm a law student/former DC IT consultant and soon-to-return to the IT field. Don't ask me why I went to law school, I have forgotten--and I am not certain it was a good choice. I ran across Markdown only recently, although I have always favored ASCII as the impervious format. I'm also polishing my Python skills,