mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-04-29 23:03:00 +02:00
8 lines
323 B
JavaScript
8 lines
323 B
JavaScript
const fs = require('node:fs');
|
|
const path = require('node:path');
|
|
const genericPage = require('../generic');
|
|
|
|
module.exports = () => {
|
|
const pageContent = fs.readFileSync(path.resolve(__dirname, './content.md'), 'utf-8');
|
|
return genericPage('Help | Lexiconga', 'The complete guide to using Lexiconga', pageContent);
|
|
};
|