mirror of
https://github.com/zebrajr/express.git
synced 2025-12-06 12:19:51 +01:00
Bigger docs for benchmarks
This commit is contained in:
parent
f03694e21e
commit
a92667fdad
|
|
@ -15,22 +15,29 @@ engine = {
|
||||||
|
|
||||||
options = { locals: { article: { title: 'Foo', body: 'bar' }}}
|
options = { locals: { article: { title: 'Foo', body: 'bar' }}}
|
||||||
|
|
||||||
ejs = ' \n\
|
ejs = ' \n\
|
||||||
<h1><%= article.title %></h1> \n\
|
<div id="primary"> \n\
|
||||||
<p><%= article.body %></p> \n\
|
<div class="block first"> \n\
|
||||||
|
<h1><%= article.title %></h1> \n\
|
||||||
|
<p><%= article.body %></p> \n\
|
||||||
|
</div> \n\
|
||||||
|
</div> \n\
|
||||||
'
|
'
|
||||||
|
|
||||||
haml = ' \n\
|
haml = ' \n\
|
||||||
%h1= article.title\n\
|
#primary \n\
|
||||||
%p= article.body \n\
|
.block.first \n\
|
||||||
|
%h1= article.title \n\
|
||||||
|
%p= article.body \n\
|
||||||
'
|
'
|
||||||
|
|
||||||
sass = ' \n\
|
sass = ' \n\
|
||||||
|
red: #ff0000 \n\
|
||||||
body \n\
|
body \n\
|
||||||
ul \n\
|
ul \n\
|
||||||
li \n\
|
li \n\
|
||||||
a \n\
|
a \n\
|
||||||
:color #ff0000 \n\
|
:color !red \n\
|
||||||
:list-style none \n\
|
:list-style none \n\
|
||||||
'
|
'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user