Displaying 20 results from an estimated 200 matches similar to: "Markdown doesn't always generate XHTML"
2003 Jan 07
1
passing additional options to SSH on the rsync command line?
I have an account on evilserver.
evilserver requires a *login* of the form "user@domain.com". something
to do with cheap hosting, I suppose.
ssh gets ill on that. ssh user@domain.com@domain.com is no good.
So I do this:
ssh -oUSER=user@domain.com domain.com
which works just fine: ssh uses the entire mess as a log in string, and
is quite happy.
So, how can I get rsync to play
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
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
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):
2007 Aug 08
2
Backtick Hickup
I'm using Michel Fortin's MDTest cases to rewrite my html2text.php script.
Just now I stumbled upon this bug (in PHP Markdown at least):
# Input:
Backtick: ``\```
# Output:
<p>Backtick: `````</p>
# Should-Be Output:
<p>Backtick: <code>`</code></p>
If you (Michel) are already aware of this, just ignore me ;-)
--
Milian Wolff
2008 Feb 08
1
unwanted paragraph (syntax edge-case)
Hi list!
Take this markdown input:
* asdf
* asdf
* asdf
asdf
What I want:
<ul>
<li>asdf
<ul>
<li>asdf</li>
<li>asdf</li>
</ul>
<p>asdf</p></li>
</ul>
But markdown puts the first asdf into a paragraph. There is nothing I can do
2008 Feb 03
2
Entity conversion glitch?
Hello,
Given the following text:
under a license from AT&T; however, others were based on BSD instead.
Daring Fireball's Markdown Dingus produces:
<p>under a license from AT&T; however, others were based on BSD
instead.</p>
Note how the '&' is not escaped to '&'.
Bug? Feature?
Thanks in advance.
Kind regards,
PA.
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
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
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
2008 Feb 25
3
Whitespace in img src
Hello,
markdown (Python implementation) seems to render:
![alternativer text](pfad/und/eine lange/url zum bild.jpg)
to
<img src="pfad/und/eine" title="lange/url zum bild.jpg"
alt="alternativer text"/>
breaking the URL at the whitespace. AFAIK whitespaces are ok in URLs
so why is it breaking up the URL here?
Thanks,
Florian
--
I'm using an
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
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
2007 Jan 23
3
Footnote support in Markdown
Hi All.
I've just started using Markdown for my blog.
So far it seems quite nice, but the one issue I've run into is a lack
of "native" support for footnotes. I think that Daring Fireball's
footnote style makes a lot of sense, and that's what I intend to use.
However, it is a bit cumbersome to implement that style from within
Markdown.
I notice that the PHP
2009 Feb 26
2
Desktop app for viewing Markdown files
Is there a file/document browser that render and display Markdown
files? (for the Mac)
jem
2009 Apr 09
8
ZIL SSD performance testing... -IOzone works great, others not so great
Hi folks,
I would appreciate it if someone can help me understand some weird
results I''m seeing with trying to do performance testing with an SSD
offloaded ZIL.
I''m attempting to improve my infrastructure''s burstable write capacity
(ZFS based WebDav servers), and naturally I''m looking at implementing
SSD based ZIL devices.
I have a test machine with the
2006 Sep 18
1
PHP Dingus Fix
I just realised I hadn't updated the version of PHP Markdown and
Extra on the dingus as I pretended I did in my two announcements. It
is now fixed: PHP Markdown 1.0.2b7 and PHP Markdown Extra 1.1b1 can
now be tested on the dingus.
<http://www.michelf.com/projects/php-markdown/dingus/>
Sorry for any inconvenience.
Michel Fortin
michel.fortin@michelf.com
http://www.michelf.com/
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
2003 May 22
1
Continued: Join domain OK, but domain not found after reboot
Hi, all:
To recap:
I can successfully get my WinXP box to join the domain (WHITEROCK), but
after rebooting, when I try to log on:
"The system cannot log you on now because the domain WHITEROCK is not
available."
I get this even when using the user 'root' - and this user was the one
to successfully join the domain WHITEROCK!!
To rule out any stale junk, my WinXP is a
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