UNPKG

indexifier

Version:

Generate an index from a directory

18 lines (17 loc) 323 B
module.exports = (content, title) => `<!doctype html> <html> <head> <meta charset="UTF-8"> <title>${title}</title> <style> * { font-family: monospace; } </style> </head> <body> <pre> ${content} </pre> </body> </html> `;