@@ -130,7 +130,7 @@ the both the public & private API docs, run `jake devdoc` instead.
130130- ` -%> ` Trim-mode ('newline slurp') tag, trims following newline
131131- ` _%> ` 'Whitespace Slurping' ending tag, removes all whitespace after it
132132
133- For the full syntax documentation, please see [ docs/syntax.md] ( https://github.com/mde /ejs/blob/master /docs/syntax.md ) .
133+ For the full syntax documentation, please see [ docs/syntax.md] ( https://github.com/photostructure /ejs/blob/main /docs/syntax.md ) .
134134
135135### Includes
136136
@@ -166,7 +166,7 @@ not supported in v3.0+.
166166Custom delimiters can be applied on a per-template basis, or globally:
167167
168168``` javascript
169- let ejs = require (" ejs" ),
169+ let ejs = require (" @photostructure/ ejs" ),
170170 users = [" geddy" , " neil" , " alex" ];
171171
172172// Just one template
@@ -192,7 +192,7 @@ functions used to render templates. It's easy to plug in LRU caching using
192192Node's ` lru-cache ` library:
193193
194194``` javascript
195- let ejs = require (" ejs" ),
195+ let ejs = require (" @photostructure/ ejs" ),
196196 LRU = require (" lru-cache" );
197197ejs .cache = new LRU ({ size: 100 }); // LRU cache with 100-item limit
198198```
@@ -206,7 +206,7 @@ of the LRU.
206206The default file loader is ` fs.readFileSync ` , if you want to customize it, you can set ejs.fileLoader.
207207
208208``` javascript
209- let ejs = require (" ejs" );
209+ let ejs = require (" @photostructure/ ejs" );
210210let myFileLoad = function (filePath ) {
211211 return " myFileLoad: " + fs .readFileSync (filePath);
212212};
@@ -234,7 +234,7 @@ including headers and footers, like so:
234234
235235## Client-side support
236236
237- Go to the [ Latest Release] ( https://github.com/mde /ejs/releases/latest ) , download
237+ Go to the [ Latest Release] ( https://github.com/photostructure /ejs/releases/latest ) , download
238238` ./ejs.js ` or ` ./ejs.min.js ` . Alternately, you can compile it yourself by cloning
239239the repository and running ` jake build ` (or ` $(npm bin)/jake build ` if jake is
240240not installed globally).
@@ -276,7 +276,7 @@ fn(data, null, function (path, d) {
276276}); // returns rendered string
277277```
278278
279- See the [ examples folder] ( https://github.com/mde /ejs/tree/master /examples ) for more details.
279+ See the [ examples folder] ( https://github.com/photostructure /ejs/tree/main /examples ) for more details.
280280
281281## IDE Integration with Syntax Highlighting
282282
0 commit comments