https://github.com/mariokonrad/mkweb
Static website generator supporting themes and plugins. Utilizes pandoc.
https://github.com/mariokonrad/mkweb
c-plus-plus cpp17 html json markdown pandoc static-website-generation yaml
Last synced: 2 months ago
JSON representation
Static website generator supporting themes and plugins. Utilizes pandoc.
- Host: GitHub
- URL: https://github.com/mariokonrad/mkweb
- Owner: mariokonrad
- License: gpl-3.0
- Created: 2017-06-24T16:22:36.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-01-10T19:59:51.000Z (over 5 years ago)
- Last Synced: 2025-06-11T05:42:51.164Z (about 1 year ago)
- Topics: c-plus-plus, cpp17, html, json, markdown, pandoc, static-website-generation, yaml
- Language: C++
- Size: 405 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
mkweb - Static Website Generator
================================
Copyright 2020 Mario Konrad (mario.konrad@gmx.net)
Static website generator supporting themes and plugins.
Using `pandoc` to convert pages from markdown to HTML.
License
-------
GPL v3, see file `LICENSE`.
Build
-----
Environment:
- GCC-6, GCC-7, GCC-8, GCC-9, GCC-10 (C++17)
- CMake 3.13 (or newer)
Library dependencies:
- nlohman/json : v3.8.0 : https://github.com/nlohmann/json.git
- yaml-cpp : 0.6.2 : https://github.com/jbeder/yaml-cpp.git
- cxxopts : v1.0.0 : https://github.com/jarro2783/cxxopts.git
- fmt : 3.0.1 : https://github.com/fmtlib/fmt.git
Will be built from local repositories (`${HOME}/local/repo`) if available
or from the remote repositories (shallow clones in `/tmp`) listed above,
and installed in `$(pwd)/local`. Execute to build and install dependencies:
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=g++-10 -DCMAKE_BUILD_TYPE=Release ..
make
make package