Displaying 20 results from an estimated 1000 matches similar to: "Entity conversion glitch?"
2008 Feb 20
2
spelling with <g>?
Hello,
What should the following input produce?
Dutch has shifted Germanic g to the velar fricatives [?] and [x], but
retained the spelling with <g> and thus at least a visual similarity
to German; English and Frisian have shifted g to [j] before palatal
vowels
The Dingus says:
<p>Dutch has shifted Germanic g to the velar fricatives [?] and [x],
but retained the spelling
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 Mar 11
2
[OT] HTTP headers status diagram
To paraphrase Woody Allen:
"Everything you always wanted to know about HTTP headers status, but
were afraid to ask"
Alternatively:
"An activity diagram to describe the resolution of HTTP response
status codes, given various headers."
http://thoughtpad.net/alan-dean/http-headers-status.html
http://thoughtpad.net/alan-dean/http-headers-status.gif
Cheers,
--
PA
2008 Feb 18
1
Markdown RFC?
Hello,
Has anyone considered writing a formal specification for Markdown?
"Why specs matter"
http://diveintomark.org/archives/2004/08/16/specs
Thoughts?
Cheers,
--
PA.
http://alt.textdrive.com/nanoki/
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):
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
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/
2006 Oct 17
2
Block quotes with a blank line between them get merged
Text:
> number 1
>
> letter B
> last one
Markdown output:
<blockquote>
<p>number 1</p>
<p>letter B</p>
<p>last one</p>
</blockquote>
Is this the intended behavior? I think there should be two separate
block quote tags like this:
<blockquote>
<p>number 1</p>
<p>letter B</p>
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
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.
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
2012 Jan 13
1
Inline HTML link and mailto: link
Dear Folks,
I am just starting out with Markdown and am trying to get two elements
working:
(1) An inline HTML link; and
(2) An inline mailto: link
as shown in the text below:
We invite you to [browse] (http://academy.swanlotus.com/index.html) this
website. Take a look and see if you find anything useful. And do [drop
us a line] (mailto:feedback at swanlotus.com) with your comments for
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 Jan 05
2
replacing " with "
Python-markdown currently replaces all straight quotes (`"`) with the
html entity (`"`). Someone recently complained about this in a
[bug report][]. As it turns out the quote was the symptom that brought
the real problem to light[^1]. In any event, the reporter pointed out
that markdown.pl does not replace straight quotes with the html
entity. I know John Gruber has mentioned before
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
2011 Nov 20
9
scanning word document in ruby
I am new to the ROR and just got stucked into something....
....that is i have to scan a word document through ruby...
Please suggest me how to do......
--
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
2006 Jun 30
2
underscore and italic policy
Hi All,
So I just joined the list - first off, Markdown is a great format and
we're using it in our online community project disCourse:
http://discourse.ics.hawaii.edu
We're using markdown for our wiki pages, stories, message postings,
pretty much everywhere.
One markdown policy that doesn't seem to fit intuitively for our users
is the fact that embedded underscores leads to
2012 Sep 26
1
Correct behaviour of block elements without leading line break before paragraph
Hi
I hope I haven't missed anything which answers this question on the
syntax page, but what is the correct behaviour of the following
markdown
random text
heading
==
random text
# heading
random text
+ list 1
(note there is not space before the '+')
The following page treats the headings differently to the start of the
list http://old-wp.slekx.com/the-markdown-tutorial/
That
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