Displaying 6 results from an estimated 6 matches for "linkref".
2013 Apr 11
0
PHP Markdown Lib 1.3
...RE).
* Added optional class and id attributes to images and links using the same
syntax as for headers:
[link](url){#id .class}
![img](url){#id .class}
It work too for reference-style links and images. In this case you need
to put those attributes at the reference definition:
[link][linkref] or [linkref]
![img][linkref]
[linkref]: url "optional title" {#id .class}
* Fixed a PHP notice message triggered when some table column separator
markers are missing on the separator line below column headers.
* Fixed a small mistake that could cause the parser to retain an...
2008 May 11
1
PHP Markdown 1.0.1l & Extra 1.2
...This has been fixed.
* Added programatically-settable parser properties `predef_urls` and
`predef_titles` for predefined URLs and titles for reference-style
links. To use this, your PHP code must call the parser this way:
$parser = new Markdwon_Parser;
$parser->predef_urls = array('linkref' => 'http://example.com');
$html = $parser->transform($text);
You can then use the URL as a normal link reference:
[my link][linkref]
[my link][linkRef]
Reference names in the parser properties *must* be lowercase.
Reference names in the Markdown source may have a...
2015 Jun 27
2
Questions about hardlinks, alternate storage and compression
...same message to two different
recipients, I see that the two u.x files are created as two different
files. Diffing them, I see that the only difference is a single char
(see [1] for an example). My questions are:
a) it is possible to tell dovecot to create a single file + a single
hardlink (linkref=2)? As other IMAP servers support that features (eg:
Cyrus, CommunigatePro, etc) I am wondering if I missed something in
configuring dovecot...
b) If it is not possible, can I run a script that compare the various
files and substitute equal ones (minus the changing line) with
hardlinks, or i...
2015 Jun 29
0
Questions about hardlinks, alternate storage and compression
...different
> recipients, I see that the two u.x files are created as two different
> files. Diffing them, I see that the only difference is a single char
> (see [1] for an example). My questions are:
> a) it is possible to tell dovecot to create a single file + a single
> hardlink (linkref=2)? As other IMAP servers support that features (eg:
> Cyrus, CommunigatePro, etc) I am wondering if I missed something in
> configuring dovecot...
> b) If it is not possible, can I run a script that compare the various
> files and substitute equal ones (minus the changing line) with...
2015 Jul 13
2
Questions about hardlinks, alternate storage and compression
...recipients, I see that the two u.x files are created as two different
>> files. Diffing them, I see that the only difference is a single char
>> (see [1] for an example). My questions are:
>> a) it is possible to tell dovecot to create a single file + a single
>> hardlink (linkref=2)? As other IMAP servers support that features (eg:
>> Cyrus, CommunigatePro, etc) I am wondering if I missed something in
>> configuring dovecot...
>> b) If it is not possible, can I run a script that compare the
>> various files and substitute equal ones (minus the chan...
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