A simple wiki generator written in POSIX sh.

Ricardo García Jiménez c25e10a59f docs: Cambios menores en el archivo README.md 1 ヶ月 前
.gitignore b03e1e4fe8 feat: Agrega archivo de configuración e items a la derecha del navbar 1 ヶ月 前
COPYING 1a9db14d4a feat: Inicializa el repositorio git 2 ヶ月 前
README.md c25e10a59f docs: Cambios menores en el archivo README.md 1 ヶ月 前
swiki d230ac821f feat: Agrega nota para incluir un archivo index.md en todos los subdirectorios 1 ヶ月 前
swiki.cfg.def d00de0f159 feat: Agrega favicon a las páginas de la wiki 1 ヶ月 前

README.md

swiki

A simple wiki generator written in POSIX sh.

Dependencies

Installation

cd swiki
sudo cp swiki /usr/local/bin

Usage

mkdir mysite
cd mysite
swiki
cat << EOF > src/index.md
# Hello

Hi everyone!
EOF
swiki

Workflow

[mysite]
  |-[docs]
  |-[src]
  |-swiki.cfg
  • docs: contains your html wiki after executing swiki.
  • src: write your markdown articles in this directory with *.md extension, supports subdirectories, images, videos, audios and other files.
  • swiki.cfg: contains config vars for your wiki, see swiki.cfg.def file.

All subdirectories must contain an index.md file.

References

License

swiki -- A simple wiki generator written in POSIX sh.

Copyright (C) 2025  Ricardo García Jiménez <ricardogj08@riseup.net>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.