Displaying 20 results from an estimated 6000 matches similar to: "two lists without separating text (corner case?)"
2008 Sep 08
13
list corner case
I'm curious how people 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
2008 Mar 22
7
Babelmark
I'm currently attempting to write a spec for parsing Markdown Extra,
and since one goal is to minimize the differences in output between
implementations, I've made a tool allowing me to compare who does what
for any given input. I hope this can also facilitate future
discussions about the syntax.
So here's Babelmark, a testbed for various Markdown implementations
were you
2007 Mar 03
1
Markdown within HTML
Before I start writing an HTML parser for Showdown, I want to see if there's
a safe way to have Markdown process the contents of HTML block elements by
default. I don't think markdown="1" is an official part of the language
yet, so this seems like a good time to talk about it.
Being able to wrap Markdown text in divs and spans would make it possible to
add more structure to
2007 Feb 28
7
Showdown -- A javascript port of Markdown
Hi,
I've just posted the first public version of Showdown, a full
javascript port of Markdown. It's 10KB and works in all major
browsers. Try out the sample app:
<http://www.attacklab.net/showdown-gui.html>
Full source code is available:
<http://www.attacklab.net/showdown-v0.9.zip>
All the heavy lifting is done by the browser's regular expression
engine, so
2006 Dec 27
4
Maruku: a better Markdown interpreter for Ruby.
Hello to all!
Maruku is a Markdown interpreter written in Ruby. It is released under the GPL.
Maruku implements the original Markdown syntax and all the
improvements in PHP Markdown Extra. Moreover, it implements some ideas
from MultiMarkdown, and adds a syntax for specifying metadata for
block elements.
Unlike Bluecloth, Maruku creates an in-memory representation of the
document tree, and this
2009 Feb 05
0
Slide Show (S9) Gem V0.7 - Better Support for More Markdown (Ruby) Libs and More
Hello,
== What's new in 0.7?
I removed the dependency on Maruku (and Oniguruma) and now allow and
check for optional installed Markdown libraries/gems. For now the
search order for markdown libraries is first come, first serve, that
is:
rdiscount > rpeg-markdown > maruku > bluecloth (fallback, always
present because it's required in gem spec).
If you want to use
2007 Jun 08
0
WMD: the Wysiwym Markdown Editor
Hi,
I recently released WMD, a WYSIWYG-style Markdown editor in JavaScript:
http://wmd-editor.com/
The idea is to make Markdown more accessible to first-time users. The
editor buttons generate the Markdown for you, and a live preview shows
the results as you type. Site authors can have the output submitted
in either Markdown or HTML. WMD works in modern versions of IE,
Firefox, Safari,
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
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 *
2012 Jun 16
0
markdown gem - Markdown Engine Wrapper - Use Your Markdown Library of Choice in Ruby
Hello,
I've created a markdown gem in Ruby that lets you use your markdown
library of choice. Preconfigured markdown libraries include: kramdown,
redcarpet, bluecloth, maruku, rpeg-markdown, rdiscount, pandoc-ruby.
Usage in your Ruby code:
require 'markdown'
Markdown.new( 'Hello World' ).to_html
The gem also includes a little command line tool. Try markdown
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
2010 Apr 02
1
Javascript implementation of PHP Markdown Extra?
I've been using the John Fraser's Showdown JavaScript port of Markdown
to do real-time previews in-browser. But I also would like to take
advantage of some of the extensions in Michel Fortin's PHP Markdown
Extra. Has anyone already tried to implement Markdown Extra in
JavaScript?
Thanks,
Keith
2008 Aug 09
0
peg-markdown (C) and rpeg-markdown (ruby gem)
Markdowners:
I've released version 0.4.1 of peg-markdown, a C implementation of
markdown. peg-markdown uses Ian Piumarta's peg/leg parser generator to
generate a parser from a parsing expression grammar (PEG). You can
inspect the grammar for markdown at
http://github.com/jgm/peg-markdown/tree/HEAD/markdown_parser.leg
peg-markdown now provides both a C library and a standalone
2007 Aug 03
2
Bug: Code block after list
Maybe this has been reported before, but I can't find it in the
archives.
A code block immediately following an ordered or unordered list
breaks both the list and the code block. Badly.
Tab or spaces for the block don't matter, legal indentation variants
of the list don't matter. Tried a bunch of casual workarounds,
extra newlines, etc., but no joy. Needs explicit
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
2010 May 03
5
New parser-based Markdown implementation for Java
Markdowners,
just a short heads-up to a newly released Markdown implementation:
"pegdown" (http://github.com/sirthias/pegdown) implements a Java Markdown-to-HTML processor based on a PEG parser with the grammar being based on John MacFarlanes C implementation "peg-markdown".
pegdown uses "parboiled" (http://www.parboiled.org) for the actual parsing work and, as
2011 Feb 09
3
code span doesn't preserve space
Consider this code span: `grep ' '`. All implementations listed on
[babelmark](http://babelmark.bobtfish.net) just simply wrap it as:
<code>grep ' '</code>
Viewed in browsers, the above code is equivalent to:
<code>grep ' '</code>
I think spaces should be preserved in code span,which maintains consistence
with code block. For
2006 May 24
0
two lists without separating text are messed up
Howdy,
The following bug in Markdown was reported to the Debian bug tracking
system.
----- Forwarded message from Pierre THIERRY <nowhere.man@levallois.eu.org> -----
From: Pierre THIERRY <nowhere.man@levallois.eu.org>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: Bug#368413: markdown: two lists without separating text are messed up
Date: Mon, 22 May 2006
2006 Dec 30
4
Escaping inside code blocks?
I am doing unit-tests for Maruku and every once in a while I run into
some doubts.
I am posting a lot to the list, but all of these messages should be
in-topic (tell me if not).
Consider the input:
---
`There is a literal backtick (\`) here.`
`There is a literal backtick (\\`) here.`
``There is a literal backtick (`) here.``
---
The documentation says that line 2 and 3 are equivalent.
2011 Sep 19
0
Arbitrary in-content metadata or markup extensions - standard/consensus/process?
Hi,
I'm new to this list, sorry if my question is off-topic - I already see some
controversy around a related question last month, "Universal syntax for
Markdown".
I'm wondering whether among the many extensions and flavors of markdown
there are any extensions that support "Highlighting" of specific portions of
content - not in the sense of code highlighters,