Displaying 20 results from an estimated 1000 matches similar to: "a new acceptance of a variety of (inconsistent) markdown implementations"
2008 Jun 07
2
mkhtml.py: writing HTML documents in Markdown
[Note to markdown-discuss readers: for context see
<http://lists.canonical.org/pipermail/kragen-hacks/2008-June/000488.html>]
* Kragen Javier Sitaker <kragen at pobox.com> [2008-06-07 09:40]:
> Stylesheeting comes naturally. I just put a `<style>` element
> at the top with a few lines inside of it to format nicely.
Note that Markdown ends up wrapping `<link>` and
2008 Jul 25
1
+ in email addresses - edge case with a lot of variation between implementations.
http://babelmark.bobtfish.net/?markdown=%3Ca%2Bb%40c.org%3E&normalize=on
Only Python markdown, Pandoc, discount and PEG markdown seem to get
this 'right'.
As a + is perfectly valid in email addresses, I'm going to fix this
in my modules.
This was reported to me via the cpan.org RT (37909), and I thought
I'd share as it's a good one in Babelmark.
Cheers
Tom
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
2009 Oct 10
0
PHP Markdown 1.0.1n & Extra 1.2.4
Hello all.
This is an update to PHP Markdown and PHP Markdown Extra correcting a
couple of bugs that got reported since last release.
I also decided to enable in this release shortcut-style reference
links (as present in Markdown.pl 1.0.2 beta), as most implementations
of Markdown accepts them by default. It's also because waiting for
John to release officially version 1.0.2 as an
2008 Mar 25
2
a JavaScript front-end for Babelmark
Hi,
I've built a quick-and-dirty diff GUI for Babelmark (thanks,
Michel!). You can get it as a bookmarklet here:
http://attacklab.net/babelmark/
If either Michel or Tom is interested in hosting this, I'll be happy
to do the grunt work for a real integration. It's kind of pain in the
ass to hit the bookmarklet every time you get new data from the server.
I've tested this
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
2009 May 07
1
homemade fn marker weirdness...
so this is a weird one:
http://babelmark.bobtfish.net/?markdown=%3Csup%3E*%3C%2Fsup%3EThe+[distinction]+between+certification+and+qualification%2C+although+vague%2C+appears+to+be+that+under+the+NASED+system%2C+states+did+the+ultimate+*certification*+of+a+voting+system+for+fitness+in+future+elections.
Note that the `<sup>*</sup>` is being turned into
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
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
2008 May 03
1
markdown implementation in C using PEG grammar
I've just uploaded an implementation of markdown in C. It defines
the syntax using a PEG grammar, so it should be easy to extend and
modify. Right now it can produce output in either HTML or LaTeX, but it
would be simple to add other output formats.
It's very fast: on my machine, it converts a 178K markdown file in
0.14 seconds (vs. 9.6 seconds for the latest Markdown.pl and 0.57
seconds
2011 Nov 20
0
Anyone here joined NaNWriMo?
I''m just a little curious if there are any Rails developers who joined
NaNoWriMo. Also, how is it so far?
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
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
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
2011 May 05
3
What does Markdown do with HTML comments? Recommendation on Markdown file extension?
Hi there!
(1.)
It may sound awkward, but I would like to use comments in Markdown texts.
According to the rule that proper HTML works as HTML, I should be able to
use
<!-- blablabla -->
But the converters I use do strange things with comments. Is there an
official rule about that?
(2.)
I wonder if there is a recommended standard file extension for Markdown
source files.
For my
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
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
2010 Sep 17
0
Merging data frames on a variety of columns
Hello,
This is a semi-complicated question about comparing two datasets,
probably using merge, but I am open to other ideas. I have a large
frame of information about companies.? It's over 30,000 rows and looks
something like...
df1 <-
identifier1???? identifier2 name other_name year
H34 C56 ACME ACME_LTD 2001
H34
2011 Jun 23
4
markdown conversions
alan said:
> I think I am in agreement,
> if by "isn't necessary" you mean to say that
> simply providing more features to Markdown
> doesn't force end users to use them,
> or even really know they exist.
except that wasn't what i meant.
i mean that it's not necessary to trade simplicity
in order to get the power of additional
2011 Oct 02
2
Mou - Markdown editor for web developers
Hi all,
I made a new markdown editor for Mac, named Mou
- http://mouapp.com
It's still in early beta stage. Requires OS X 10.7+ to run.
Let me know how do you think about it. :)
Kudos to John Gruber who invented Markdown language, as always!
:)
Best regards,
Chen Luo
2011 Jul 07
6
writing tools that use light-markup
let's talk about writing tools that use markdown
(or more broadly, another form of light-markup)...
to begin with, there is the markdown "dingus"...
from a demo perspective, it has been _fantastic_.
it has provided interested observers a quick idea
about the simplicity and the power of markdown.
as a writing tool, it's a bit clunky; it will work, yes,
but i'd doubt many