mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
* build speed improvments * fix button * prettier * move things to plugins / transformers * final fixes * build fixes * fix build issues * add comment * build sstuf * prettier * fix badge.css * fix build stuff * fix eleventy stuff * prettier
19 lines
380 B
JavaScript
19 lines
380 B
JavaScript
import nunjucks from 'nunjucks';
|
|
|
|
/**
|
|
* This function simulates what a server would do running "on top" of eleventy.
|
|
*/
|
|
export function SimulateWebAwesomeApp(str) {
|
|
return nunjucks.renderString(str, {
|
|
// Stub the server EJS shortcodes.
|
|
currentUser: {
|
|
hasPro: false,
|
|
},
|
|
server: {
|
|
head: '',
|
|
loginOrAvatar: '',
|
|
flashes: '',
|
|
},
|
|
});
|
|
}
|