search for: markdownj

Displaying 6 results from an estimated 6 matches for "markdownj".

Did you mean: markdown
2008 Mar 22
7
Babelmark
...down Extra, Python Markdown, Text::Markdown and Text::MultiMarkdown, and finally Showdown. Unfortunatly, my web host doesn't do Ruby, nor Java, C# or Lua, so the online version is missing a couple of interesting implementations. Locally on my computer Babelmark also do BlueCloth, Maruku, MarkdownJ, markdown.lua, and Pandoc. I'm very sorry if your Markdown implementation can't be part of Babelmark online, but if anyone has a better host to offer for Babelmark, ideally with support for all of these, I'd gladly send him the scripts. You can find Babelmark here: <http://...
2008 Mar 14
1
Markdown doesn't always generate XHTML
...d 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 havn't checked other implementations of markdown.) I have two issues with this: 1. The script tag isn't closed, which means it's not valid XML (and thus not valid XHTML). 2. It's a security issue if you allow visitors to enter markdow...
2008 Sep 08
13
list corner case
...eople think the following *should* be interpreted: - one 2. two http://babelmark.bobtfish.net/?markdown=-++one%0D%0A2.+two%0D%0A%0D%0A As you can see, implementations split into three groups here: (a) treat as an unordered list Markdown.pl, Python markdown, MultiMarkdown, BlueCloth, MarkdownJ, Showdown (b) treat as an unordered list with an ordered sublist PHP Markdown, Text::Markdown, Pandoc (c) treat as an unordered list followed by an ordered list Maruku, Discount, PEG Markdown John
2011 Feb 08
2
two lists without separating text (corner case?)
First we consider two lists with different type: - foo - bar 1. first 1. second There are two interceptions: a. one unordered list b. one unordered list followed by one ordered list Implementations conforming to a: - Markdown.pl - Python Markdown - BlueCloth - MarkdownJ - markdown.lua, - Showdown Implementations conforming to b: - PHP Markdown - Text::Markdown - Maruku - Pandoc - Discount - PEG Markdown I feel that option b is intuitive. Then what about two lists of the same type? - apple - orange * John * Jane Is this a) ONE or b) TWO list? All markdow...
2007 Jan 30
0
Markdown plugin for Eclipse
Hello all, I've created a (rather basic) Markdown plugin for Eclipse. It's based on the MarkdownJ code. I'm giving it away (free under a GPL license) from here: http://thinktankmaths.co.uk/2007/01/16/thinktank-releases-markdown-plugin-for-eclipse/ I hope this is useful to some of you. Regards, - Daniel -------------------------------------------------------------------- "I know nothin...
2010 May 03
5
New parser-based Markdown implementation for Java
...parboiled... however, I'd be happier to have it chew on some really large and complicated Markdown source for establishing a good baseline. 2. Markdown wiki: I'd like to advertise this new Java implementation on the original Markdown wiki, especially since the only other Java alternative (MarkdownJ) probably doesn't cut it in many cases. However, it seems account creation for the wiki is defunct so that only people with existing accounts can make changes. Would someone be able to add a link to pegdown to the "list" of Java implementations? Of course, I would also do it myself if...