Displaying 2 results from an estimated 2 matches for "entry_guid".
2007 Jan 23
3
Footnote support in Markdown
Hi All.
I've just started using Markdown for my blog.
So far it seems quite nice, but the one issue I've run into is a lack
of "native" support for footnotes. I think that Daring Fireball's
footnote style makes a lot of sense, and that's what I intend to use.
However, it is a bit cumbersome to implement that style from within
Markdown.
I notice that the PHP
2007 Jul 12
1
Proposal for footnote GUID syntax
...ubstitution for you.
Michel Fortin was kind enough to respond with the following:
> It's already possible if you instantiate the parser yourself
> instead of calling the simplified Markdown function:
>
> $parser = new Markdown_Parser;
> $parser->fn_id_prefix = $entry_guid;
> $text = $parser->transform($text);
So far so good. However, we're still left with the problem of
deciding on a GUID when we instantiate the parser. This complicates
our workflow, since we can't just pass a block of Markdown text to
the parser and let it do its processin...