Displaying 20 results from an estimated 32 matches for "plasmasturm".
2006 Dec 30
3
problems with escaping backticks
I can't escape backticks if on a line with other code:
$ echo 'maybe use `fixed face` for `/path/to/file` by using \`back ticks\`
around it' | /usr/pkg/bin/Markdown
<p>maybe use <code>fixed face</code> for <code>/path/to/file</code> by
using \<code>back ticks\</code> around it</p>
and this is even more wrong:
$ echo 'maybe use
2006 May 02
2
Bug: invalid nesting of inline markup across link labels
...r</em></a><em> </em><a href="#"><em>baz</em>quux</a></p>
Of course, the second option is a lot more complex to implement
and at the same time unlikely to be what the user actually meant.
Regards,
--
Aristotle Pagaltzis // <http://plasmasturm.org/>
2006 Jul 13
6
creating meaningful urls, (changing default)
Hi,
Urls in ruby are as defualt set to :controller/:action/:id
How can I change it to somthing like this
:controller/:action/:id/#random title#
#random title# may be a variable or taken from a field in the database
thanks
scott
--
Posted via http://www.ruby-forum.com/.
2008 Jun 07
2
mkhtml.py: writing HTML documents in Markdown
...html> the
problem shows up anyway.
Of course, neither tag has any business being in the HTML body;
they should both be in the head. Since you?re loading
BeautifulSoup anyway, you probably want to include that as fix-up
step in your postprocessing.
Regards,
--
Aristotle Pagaltzis // <http://plasmasturm.org/>
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>
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/*"
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
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 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
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 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
2006 May 02
1
Macros?
Is there any way to do macros in Markdown?
Or do you have any other suggestions?
I'm thinking of a few uses.
One is to read back system stuff that might be global or session settings.
Example
Tell the user where they are coming from, time etc
You are %%USERNAME%%
Logged in at %%LOGINTIME%%
Your browser is %%HTTP{"User-Agent"}%%
You are accessing from
2006 Oct 07
6
Minor regexp oversight for setext headings
Noticed the patterns for setext style headings are:
^(.+)[ \t]*\n=+[ \t]*\n+
Should be:
^(.+?)[ \t]*\n=+[ \t]*\n+
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 Jul 07
2
adding [markdown] to the email subject lines for markdown-discuss
Hi All,
I was wondering what people thought to the idea of getting "[markdown]"
added to the subject lines of all the mails to the markdown mailing list?
It would certainly help me out with my email organisation.
Many thanks
CHEERS> SAM
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 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
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
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 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