literate programming on Github
`1. go to the directory: src/Cpp
cd src/Cpp
`2. run script to generate source code
./mk_DataExample.sh
`3. change to tests directory
cd tests
g++ -g -o utData utData.cpp ../Data.cpp -I.. -std=c++11
`4. run
./utData
- combines source fragments from multiple files
- preserves line number information in the code (debugging)
- paste fragments from files with <fpaste ...>
this project depends on
which can be built in /ext:
git submodule update --init
cd ext/html2text.git
PREFIX=$HOME/.local ./configure
make && make install
(point $PREFIX to the installation root path)