eejs: Delete broken example

This commit is contained in:
Richard Hansen 2021-01-19 15:26:45 -05:00 committed by John McLear
parent 5987f75b0d
commit 351913c08e
3 changed files with 1 additions and 17 deletions

View file

@ -1,9 +0,0 @@
a
<% e.begin_block("bar"); %>
A
<% e.begin_block("foo"); %>
XX
<% e.end_block(); %>
B
<% e.end_block(); %>
b

View file

@ -1,7 +0,0 @@
<% e.inherit("./bar.ejs"); %>
<% e.begin_define_block("foo"); %>
YY
<% e.super(); %>
ZZ
<% e.end_define_block(); %>

View file

@ -17,7 +17,7 @@
/* Basic usage:
*
* require("./index").require("./examples/foo.ejs")
* require("./index").require("./path/to/template.ejs")
*/
const ejs = require('ejs');