No description
Find a file
kekskurse 8d22209df5
All checks were successful
ci/woodpecker/push/commit Pipeline was successful
fix: create folder if first file is not a markedown file
2025-08-04 01:20:57 +02:00
.woodpecker ic: s3 upload 2025-07-03 22:45:46 +02:00
layout chore: init first alpha 2025-07-03 22:14:19 +02:00
pkg/wikipress fix: create folder if first file is not a markedown file 2025-08-04 01:20:57 +02:00
.gitignore chore: init first alpha 2025-07-03 22:14:19 +02:00
go.mod chore: include layout 2025-07-06 17:04:14 +02:00
go.sum chore: include layout 2025-07-06 17:04:14 +02:00
main.go remove out folder if exists and add some logging 2025-07-06 17:12:49 +02:00
Readme.md docs: Readme 2025-07-06 17:23:35 +02:00
wikipress remove out folder if exists and add some logging 2025-07-06 17:12:49 +02:00

Wikipress

Create a wiki like static html page base on markdown files, if the content is a git repro it also show the history.

Install

Get the last Version and make it executable

wget https://wikipress.s3.fr-par.scw.cloud/wikipress/wikipress/wikipress
chmod u+x wikipress

Content

Create a foldern with the content of the page, e.g. /home/foo/mywikipage and add some MArkedown files. The markdown file contains spme header information in a key: value format, than a seperator --- and than the markdown content. For an example the content of a file look like this:

title: Startseite
order: 10
---
## Links
* [kekskurse.de](https://kekskurse.de/)

Generate HTML Page

To generate a HTML Page out of the content you can run wikipress with the --path parameter, if the content is not a git repro you also need to add the --no-git flag.

./wikipress --path /home/foo/mywikipage --no-git

Example