minor fix...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-04-07 14:53:36 +03:00
parent ac9cdb605f
commit 01d937085d
2 changed files with 8 additions and 7 deletions

View File

@ -45,24 +45,24 @@ are likely to change, the implementation / API **will definitely** change! ;)_
- a stand-alone testing platform and reference implementation for - a stand-alone testing platform and reference implementation for
pWiki components. pWiki components.
### General Documentation: ### General Documentation:
<pwiki-comment> <pwiki-comment>
- [General info](README.md) -- This document. - [General info](README.md) - This document.
- [Bootstrap path](bootstrap/Doc/Path.md) -- Path mechanics. - [Bootstrap path](bootstrap/Doc/Path.md) - Path mechanics.
- [Bootstrap macros](bootstrap/Doc/Macros.md) -- Macro documentation - [Bootstrap macros](bootstrap/Doc/Macros.md) - Macro documentation
</pwiki-comment> </pwiki-comment>
<!--[pWiki[ <!--[pWiki[
- [Doc/About] -- This document. - [Doc/About] - This document.
- [Doc/Path] -- Path mechanics. - [Doc/Path] - Path mechanics.
- [Doc/Macros] -- Macro documentation - [Doc/Macros] - Macro documentation
]]--> ]]-->
### Project: ### Project:
- The project on [GitHub](https://github.com/flynx/pWiki) - The project on [GitHub](https://github.com/flynx/pWiki)
- pWiki [live demo (hosted on Gitgub)](https://flynx.github.io/pWiki/) _&ndash; - pWiki [live demo (hosted on Gitgub)](https://flynx.github.io/pWiki/) _&ndash;

View File

@ -32,6 +32,7 @@ glob('bootstrap/**/*.@(tpl|md|css|html)')
text: fs.readFileSync('README.md').toString(), text: fs.readFileSync('README.md').toString(),
} } } }
if(fs.existsSync('LICENSE')){ if(fs.existsSync('LICENSE')){
console.log('Setting:', 'LICENSE')
bootstrap['LICENSE'] = { bootstrap['LICENSE'] = {
text: fs.readFileSync('LICENSE').toString(), text: fs.readFileSync('LICENSE').toString(),
} } } }