Innym zupełnie innym podejściem byłoby stworzenie filtru, który najpierw dźga w podmienianie linków, a potem renderuje z jadeitowym sekundą
h1 happy days
:inline
p this can have [a link](http://going-nowhere.com/) in it
Renderuje:
<h1>happy days</h1><p>this can have <a href='http://going-nowhere.com/'>a link</a> in it</p>
Pełny przykład roboczy: index.js (uruchamiany z nodejs)
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());
Bardziej ogólne rozwiązanie wyrenderowałoby mini podbloki jadeitu w unikalnym bloku (może być identyfikowanym przez coś podobnego ${jade goes here}
), więc ...
p some paragraph text where ${a(href="wherever.htm") the link} is embedded
Można to zaimplementować w dokładnie taki sam sposób, jak powyżej.
Roboczy przykład rozwiązania ogólnego:
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());