Displaying 20 results from an estimated 900 matches similar to: "Extra markdown suggestions"
2010 Sep 28
1
PHP Markdown Extra fork for MathJax
My fork of Michel Fortin's PHP Markdown Extra has been updated to
include support for MathJax as well as jsMath. Both of these are
JavaScript libraries for using LaTeX syntax, e.g., \(E = mc^2\), to
include high quality, scalable equations (not just bitmapped images of
equations) in your HTML pages.
Links to more information:
* A [description of PHP Markdown Extra Math][1], along with some
2009 Jun 21
5
Query about emphasis
Hello List,
Firstly, I was very impressed when I tried markdown 2.0 recently. Fantastic
work all!
I have a query about the treatment of emphasis.
I realise that the horse has bolted, and changes to currently supported
functionality are unlikely to attract support. However, there does seem (at
least in my tiny mind) to be a mis-match between the following stated goal
and the present
2010 Apr 02
1
Javascript implementation of PHP Markdown Extra?
I've been using the John Fraser's Showdown JavaScript port of Markdown
to do real-time previews in-browser. But I also would like to take
advantage of some of the extensions in Michel Fortin's PHP Markdown
Extra. Has anyone already tried to implement Markdown Extra in
JavaScript?
Thanks,
Keith
2011 Apr 11
2
CodeDown = Markdown as the universal language for program documentation
Dear Markdown enthusiasts out there!
Sure, I don't need to tell you how great an versatile Markdown is for
writing standard documents.
I think, that it would make a really great universal standard as a
programming documentation language, too, and maybe "CodeDown" would be a
good title for this approach.
The idea started when I was trying to document some PHP scripts. I need to
2007 Sep 22
4
anchor names from headers (Setext and atx)?
It would be useful if defining headers (either Setext and atx style), if
Markdown would also generate corresponding anchors:
## This is an H2 ##
would create:
<a name="This is an H2"/>
<h2>This is an H2</h2>
Or something like that.
Or is that available some different way?
Thanks,
Jeremy C. Reed
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 Jan 16
3
Markdown for Wordpress?
Does anyone know which version of Markdown is best for Wordpress? I
see online that there are a few and was wondering which one people
prefer. Also, is there any chance John Gruber will write an official
Markdown plugin for Wordpress, given how popular it's becoming?
--------------------------------------------------------
robdumas at gmail.com
http://obnoxio.us/
2007 Oct 08
5
Flat code block syntax
>>> I'm not sure the indentation feature is so useful. After all, you
>>> can use the old syntax if you want indentation. What do you think?
>>
>> I'd prefer to keep it simple and leave out the indentation feature.
I would also prefer to leave this out.
>>> Perhaps an alternative would be to use ++++s instead of ~~~~s.
>> Advantages: Not
2008 May 09
5
Markdown Extra Spec: Parsing Section
Hello all,
I've began writing the parsing section of the spec, and I though I'd
let you know about where I'm heading with all this.
Basically, parsing is defined as three consecutive passes: parsing
document elements, parsing block elements and parsing span elements.
Each pass is going to contain a set of rules the parser should attempt
to match while parsing the input. Rules
2007 Aug 04
1
PHP Markdown 1.0.1h & Extra 1.1.4
This update to PHP Markdown fix a bug that slipped in the WordPress
interface with the last update. It also introduce a new "feature":
you can now instruct the parser to ignore HTML tags and/or entities
in the input. You can do this by instantiating yourself the parser
and setting the `no_markup` or `no_entities` properties to true:
$parser = new Markdown_Parser;
2013 Jan 21
1
PHP Markdown Lib 1.3 (Beta 4)
This is basically a pre-announcement. I'll make the announcement more official by posting it on my blog when it goes out of beta.
There's a new branch to PHP Markdown. It contains the two exact same parsers found in PHP Markdown and PHP Markdown Extra, but without all the cruft. In other words: is packaged to be used as a library, and only as a library. The two parsers classes are in the
2011 Oct 26
1
Object-oriented PHP implementation is coming, looking for parties
Hello, list.
My name is Max, I'm a web developer.
I found Markdown convention very useful, I use it everywhere nowadays.
Michel Fortin's markdown-php seems to be the only available PHP implementation.
And, judging by number of people using it, it works well :)
But there is many thing that's keep it from being perfect:
* One large file with functions not being sorted in a logical
2008 Mar 15
1
Javascript in URLs (was: Markdown doesn't always generate XHTML)
On Fri, Mar 14, 2008 at 11:22 PM, Michel Fortin
<michel.fortin at michelf.com> wrote:
>
> "Safe mode" you say?
Yeah, well, I didn't paint that bike shed.
>
> PHP Markdown also has a no-markup mode which would filter script tags
> and any other HTML tags. But this doesn't prevent anyone from
> inserting their own script on the page. Do you know you can
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+
2008 May 12
2
Fenced-Code-Blocks in Python-Markdown
I'd like to announce a beta release of the Fenced-Code-Blocks
Extension for Python-Markdown.
<http://www.freewisdom.org/projects/python-markdown/Available_Extensions>
The latest code for Python-Markdown and packaged extensions are now
available on Gitorious.
<http://gitorious.org/projects/python-markdown>
The same syntax is used as the just released PHP Markdown Extra 1.2. I
2006 Aug 15
2
PHP 5 port of Markdown, plugin-based
Hi,
First of all, thanks to John Gruber for the fantastic Markdown syntax
and parse/render system. Also, thanks to Michel Fortin for his PHP 4
version of Markdown.
Based on those two works, I have completed a **plugin-aware** PHP 5
version of Markdown. You can see it in Subversion here:
* <http://solarphp.com/svn/trunk/Solar/Markdown.php>
*
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 May 19
1
Object-Oriented PHP Markdown/SmartyPants
This is something that I've been asked for many times. So today I'm
announcing that all future versions of PHP Markdown and PHP
SmartyPants will be encapsulated in a parser class. This has two
major benefits:
1. It should make extensions to the syntax easier to create and
maintain as it is now possible to now extend the parser by
replacing (overriding) only the relevant
2008 May 11
1
PHP Markdown 1.0.1l & Extra 1.2
Time for an update to PHP Markdown and PHP Markdown Extra.
<http://michelf.com/project/php-markdown/>
This new version of PHP Markdown Extra adds support for "fenced" code
blocks (which I was previously calling "flat"). Fenced code blocks
overcome many limitations of Markdown's indented code blocks: they can
can be put immediately following a list item, can
2006 Jul 07
1
Markdown-PHP and the single opening quote character
Gentlefolk,
______________________________________________________
the setup
CMS: WordPress 1.5.2
Markdown version: 1.0.1c
Markdown implementation: PHP version by Michel Fortin
other active WP plugins: none
URL: <http://betweenborders.com/reflections/field-notes-from-inside-a-car/>
______________________________________________________
the pre-processed