Displaying 20 results from an estimated 1000 matches similar to: "Inline HTML link and mailto: link"
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
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/
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
2007 Dec 12
3
Adding data labels to Lattice plots
Hi,
I am new to lattice graphics and have the following question. I have a
dataframe d2:
cat PointsInTime MeanScore
1 Parent Intake 26.25000
2 Youth Intake 9.75000
3 Worker Intake 20.63636
4 Parent Discharge 24.00000
5 Youth Discharge 15.60000
6 Worker Discharge 23.90909
and to produce a plot I am using the following code
print(xyplot(MeanScore ~
2012 Apr 20
2
a blade of grass cracks the sidewalk
spring has sprung, so on this day of grass,
i guess i just can't hold this back any more.
> http://zenmagiclove.com/aarp2.py
voila. a dingus for zen markup language.
lighter than markdown.
_and_ more powerful...
i know. wha? go figure.
not that it's a competition.
supporters will love finally seeing a look.
detractors will love the bugs i left in there,
just for them, as
2009 Jul 16
3
md2html.awk and a question
Hello,
I have just subscribed to this list. I will introduce myself: For some
time, I have kept a markdown implementation in awk for personal use,
different from other implementations. Now, I'm in the process of
rewriting it and I'm trying to do it as compatible as possible.
There are many questions I have, I know some test suites and am trying
to pass those tests. When I don't know
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 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
2016 Feb 10
2
StringSwitch class
Sorry for belaboring on a possibly minor point here, but is my
understanding correct that even assuming that the case function is always
inlined so we don't have extra function call overhead, we have the
redundant if (!Result) checks when we use StringSwitch as opposed to a
bunch of if- elses.
Thanks.
On Mon, Feb 8, 2016 at 12:00 PM, Anupama Chandrasekhar <
anupama.lists at gmail.com>
2013 Jul 24
4
Update to Gnome 3
Hello,
just a little question:
Exists a way to update the Gnome 2.28.1 out of box at Centos 6.4 to a
Gnome 3?
And if yes...how does this work?
thanks a lot.
--
thanks + bye ajh
2016 Feb 05
4
StringSwitch class
Hi:
I have a question about the llvm StringSwitch class. Why is this more
efficient than comparing the hashes of the strings or just using a bunch of
if statements.
Anupama
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160205/9be0fcc8/attachment.html>
2016 Feb 08
2
StringSwitch class
> On Feb 5, 2016, at 4:42 PM, Mehdi Amini via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
>
>> On Feb 5, 2016, at 2:43 PM, Anupama Chandrasekhar via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>>
>> Hi:
>>
>> I have a question about the llvm StringSwitch class. Why is this more efficient than comparing the hashes of the strings or just
2013 Jul 15
1
libvirt hooks for startup and shutdown
Hello list,
could anyone tell me where are the hooks for libvirt/qemu/kvm?
Read there:
http://www.libvirt.org/hooks.html
I need the hooks for startup and stop at the Centos architecture.
My version of libvirt:
0.9.10
--
thanks + bye ajh
2017 Nov 09
2
New LLVM License
Hi:
I was wondering where I can find more information about LLVM's new
licensing that was mentioned at the dev meeting and is scheduled to take
effect from Feb 2018.
Thanks,
Anupama
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20171108/7703217c/attachment.html>
2013 Mar 19
2
Using Markdown locally
Markdown is a fantastic program (which I am sure you already know). It saves me a lot of time. Currently, I use the dingus located at: http://daringfireball.net/projects/markdown/dingus
However, I am trying to set one up just like that, locally - on my own system, without having to use that one (wasting the bandwidth, and having to switch to the site every time to use it).
I am running Ubuntu.