Tamamen farklı bir başka yaklaşım, ilk önce bağlantıları değiştirirken bıçaklayan ve ardından yeşim taşı ile işleyen bir filtre oluşturmaktır.
h1 happy days
:inline
p this can have [a link](http://going-nowhere.com/) in it
çizer:
<h1>happy days</h1><p>this can have <a href='http://going-nowhere.com/'>a link</a> in it</p>
Tam çalışma örneği: index.js (nodejs ile çalıştırın)
var f, jade;
jade = require('jade');
jade.filters.inline = function(txt) {
// simple regex to match links, might be better as parser, but seems overkill
txt = txt.replace(/\[(.+?)\]\((.+?)\)/, "<a href='$2'>$1</a>");
return jade.compile(txt)();
};
jadestring = ""+ // p.s. I hate javascript's non-handling of multiline strings
"h1 happy days\n"+
":inline\n"+
" p this can have [a link](http://going-nowhere.com/) in it"
f = jade.compile(jadestring);
console.log(f());
Daha genel bir çözüm, mini yeşim alt bloklarını benzersiz bir blokta (belki benzer bir şeyle tanımlanabilir ${jade goes here}
) oluşturur, bu yüzden ...
p some paragraph text where ${a(href="wherever.htm") the link} is embedded
Bu, yukarıdaki ile tamamen aynı şekilde uygulanabilir.
Genel çözümün çalışma örneği:
var f, jade;
jade = require('jade');
jade.filters.inline = function(txt) {
txt = txt.replace(/\${(.+?)}/, function(a,b){
return jade.compile(b)();
});
return jade.compile(txt)();
};
jadestring = ""+ // p.s. I hate javascript's non-handling of multiline strings
"h1 happy days\n"+
":inline\n"+
" p this can have ${a(href='http://going-nowhere.com/') a link} in it"
f = jade.compile(jadestring);
console.log(f());