A simple wiki generator written in POSIX sh.
|
1 ヶ月 前 | |
---|---|---|
.gitignore | 1 ヶ月 前 | |
COPYING | 2 ヶ月 前 | |
README.md | 1 ヶ月 前 | |
swiki | 1 ヶ月 前 | |
swiki.cfg.def | 1 ヶ月 前 |
A simple wiki generator written in POSIX sh
.
sh
, bash
, zsh
or other shell like UNIX.cd swiki
sudo cp swiki /usr/local/bin
mkdir mysite
cd mysite
swiki
cat << EOF > src/index.md
# Hello
Hi everyone!
EOF
swiki
[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.
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/>.