Displaying 20 results from an estimated 1000 matches similar to: "SmartyPants 1.6 multiply remarks"
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
2006 Jun 28
0
PHP SmartyPants Typographer 1.0b2
As I stated before, I had in the work a utility to control spaces
around punctuation and at some other places. Now, I've integrated it,
with a few extra quote goodies, within PHP SmartyPants, as an
extension just like PHP Markdown Extra extends PHP Markdown.
And so appeared SmartyPants Typographer (announcement on my weblog)
2009 Oct 22
3
Order of Markdown and SmartyPants filters (was: Re: Markdown Support in Drupal6.14?)
2009/10/20 Lou Quillio <public at quillio.com>
> On Mon, Oct 19, 2009 at 3:20 PM, AJG Baeumel
> <ajgb at st-maurices.n-lanark.sch.uk> wrote:
> > Why is Marksmarty no longersupported in Drupal 6.14?
>
> It's been a while since I've worked with Drupal, but I remember that
> MarkSmarty was really just a hybrid convenience filter. It's better to
> apply
2007 Aug 30
2
Markdown, SmartyPants and Wordpress?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I'm redesigning my site and considering moving from Movable Type to
WP, but many of my entries are in Markdown. I really, really like
Markdown and SmartyPants. I've not used Textile much, but Markdown
feels more natural to me; also, I love SmartyPants because I'm a
stickler for curly quotes.
I understand there's a Markdown
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 May 21
0
PHP Markdown 1.0.2b8 & Extra 1.1.3b1
Bug fixes for PHP Markdown & Extra, available as beta version for
now. You can download them from these URLs.
<http://www.michelf.com/docs/projets/php-markdown-1.0.2b8.zip>
<http://www.michelf.com/docs/projets/php-markdown-extra-1.1.3b1.zip>
One noticeable change in these releases is that PHP Markdown now
outputs numeric character references for escaped characters (like
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):
2007 Jul 03
0
PHP Markdown 1.0.1g & Extra 1.1.3
This is a bug-fix release for PHP Markdown and PHP Markdown Extra.
It's almost identical to version 1.0.2b8, minus the new features
introduced in the 1.0.2 betas (shortcut links, markdown attribute
support for plain PHP Markdown), plus a few minor improvements. You
can download PHP Markdown & Extra from the project page:
<http://www.michelf.com/projects/php-markdown/>
Here
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
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
2007 Dec 05
1
[patch] Headers, unresolved footnotes, and fractions
Hi folks, thanks for the useful code!
I've added some functionality to PHP Markdown Extra and PHP
SmartyPants. Diffs attached.
For PHP Markdown Extra:
*A new config option, MARKDOWN_HEADER_BASE, which sets the largest
header level that Markdown can generate and defaults to 1; useful if
you use <h1> for site-wide elements and want Markdown-generated
headers to start at
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/
2008 May 06
1
Markdown Extra Specification (First Draft)
It took much more time than I expected, and it is currently less
complete than I have hoped, but I've finaly made a first draft of the
Markdown Extra spec. You can find it at <http://michelf.com/specs/markdown-extra/
>
Currently, the specification defines its goals and a document model
for Markdown Extra. It lacks the most important part though: the
parsing section, which
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
2009 Feb 26
2
Desktop app for viewing Markdown files
Is there a file/document browser that render and display Markdown
files? (for the Mac)
jem
2012 Jan 13
1
Markdown-Discuss Digest, Vol 106, Issue 4
> The only problem as I see it is that three dashes produce a long dash
> and a hyphen rather than an em-dash, although two dashes seem to work
> well. But investigating that will have to wait for the morrow!
I'm afraid you are confusing two different replies. SmartyPants looks for two hyphens (or tee dashes) and turns them into an em dash. The three dashes is for another
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 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;
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
2013 Apr 11
0
PHP Markdown Lib 1.3
This is the first release of PHP Markdown Lib. This package requires PHP version 4.3 or later and is designed to work with PSR-0 autoloading and, optionally, with Composer. You can download it from the PHP Markdown website:
<http://michelf.ca/projects/php-markdown/>
You can also read the official announcement here:
<http://michelf.ca/blog/2013/php-markdown-lib/>
Also note new