Displaying 20 results from an estimated 2000 matches similar to: "problems with escaping backticks"
2006 Sep 16
5
PHP Markdown 1.0.2b7
This is a new release for PHP Markdown, following Markdown.pl 1.0.2b7
from a few weeks ago. It fix the same bugs, and some more; it also
introduce more radical backend changes. It can be downloaded here:
<http://www.michelf.com/docs/projets/php-markdown-1.0.2b7.zip>
and you can test it on the PHP Markdown Dingus:
<http://www.michelf.com/projects/php-markdown/dingus/>
This
2006 Dec 30
4
best way to use emphasis within code?
I want to use fixed font like a code block but also use italics and bold
at same time.
For example in HTML:
<tt>$ <b>mail -u <i>user</i></b></tt>
What is the best way to do this in markdown, especially if I have several
lines of content that needs to be spaced out correctly?
Thanks
Jeremy C. Reed
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.
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
2006 May 02
2
Bug: invalid nesting of inline markup across link labels
Hi John,
there?s a bug in Markdown.pl:
[foo*bar](#) [baz*quux](#)
This expands to the following:
<p><a href="#">foo<em>bar</a> <a href="#">baz</em>quux</a></p>
Those `*` should either be disregarded or the tags should nest
correctly:
1. <p><a href="#">foo*bar</a> <a
2007 Jun 14
6
Revisiting mime-types and file extensions
Hi,
I'm in the process of adding support for Markdown to a minimal CMS in
Rails, [Railfrog][railfrog], which uses mime types to select appropriate
processing. I have had a look through the archives but have not been
able to see that a consensus has emerged as to what such a mime type for
Markdown should look like. My reading of the RFCs suggests that it
should be within the "text/*"
2006 Apr 28
6
Emphasis or Italic?
What's the difference between:
<em>emphasis</em> and <i>italicized</i>
and
<strong>strong</strong> and <b>bold</b>
It seems to subtle for my browsers.
The only "difference" I've been able to find is that according to the
O'Reilly book <strong> and <emphasis> are semantic tags, while <b> and <i>
2006 Dec 29
6
Doubt about standard syntax
I have a doubt about the standard syntax (actually, it's the only test
that maruku doesn't pass yet).
Lists MUST be preceded by an empty line?
So the following are only 4 paragraphs, without list items, right?
-----------
Paragraph and no space:
* ciao
Paragraph and 1 space:
* ciao
Paragraph and 3 spaces:
* ciao
Paragraph and 4 spaces:
* ciao
-----------
In other words, a
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
2007 Oct 06
4
seemingly no good way to end bulleted list and start code block
Howdy,
The following bug report was sent to the Debian BTS. Is there a way
to have a code block immediately follow an unordered list?
----- Forwarded message from Joey Hess <joeyh at debian.org> -----
Consider this markdown:
* bla
* bla2
this should be treated as code block
and it is not ...
but if bullets are not above this, it works
If the first code block is indented with
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
2010 May 01
4
using markdown in a forum?
Hi,
Is markdown a good language to use in a web forum application? How does
it compare to bbcode in features and ease-of-use for non-technical
users?
I'm thinking of using jquery-markedit in that forum app.
Thanks,
--
http://www.cruisefish.net
2006 Jul 08
2
numbered list bug in markdown.pl?
Hi,
I'm getting what I believe to be a bug. If I put the following in markdown:
1. This is a numbered list
2. Blah
9. This is another list item
10. Ok, weird bug here
11. It's really bothering me
And when I run it through markdown.pl 1.01 I get out the following:
<ol>
<li>This is a numbered list</li>
<li>Blah</li>
<li>This is another
2010 Mar 01
3
multiline header
Hi,
first of all thanks for such a great syntax, so far it's the best I know!
I have a document with quite long titles and I was wondering if it was
possible to hard-break them:
e.g.:
This is a veeeeeeeeeeeeeeeeeeerrrrrrrrrrrrry long title
=======================================================
would be
This is a veeeeeeeeeeeeeeeeeeerrrrrrrrrrrrry
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
2006 Dec 29
3
Leading blank lines in codeblocks ignored?
(In the following I write <tab> because my MUA strips tabs)
Consider the code:
----
Paragraph
<tab>
<tab> Line
<tab>
----
or even:
----
Paragraph
<tab><space>
<tab> Line
<tab>
----
Markdown.pl ignores the leading blank line in the code block.
Is this intended behaviour?
--
Andrea Censi
"Life is too important to be taken
2006 Jul 29
4
Formal Grammar — some thoughts
I recently subscribed and saw in the archive that Eric Astor was
asking for a formal grammar (unlikely the first time for such request.)
Currently there are a few problems in making such a thing so I was
curious if Mr. Gruber has made any thoughts about moving toward one?
This would also allow a more ?clean? parser which would get rid of
some of the current problems (bad nesting[^1],
2007 Jan 27
2
Markdown use by newspapers?
Does anyone know of any larger newspapers or publishing companies
that use Markdown? Several times I've noticed glitches in web page
articles, posted at larger newspapers, where emphasis has been
indicated by underlines and have wondered.
Robert McGonegal
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
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