1f0dc8912322750dfdbe23ad735b407cc51d8252
When running `make` to generate the HTML version of the site, all Markdown files are automatically found and converted - including README.md and CONTRIBUTING.md. These two aren't really wanted, and the resulting HTML versions need to be ignored or deleted. It's not sufficient to add them to .gitignore, because they'll still be there in the filesystem causing confusion, even if the risk of committing them to Git is minimized. This change filters them out of the Makefile's argument list of Markdown files that should be automatically converted to HTML, so the unwanted versions don't get generated in the first place. Before: ``` $ make pandoc -f markdown-smart+autolink_bare_uris --template index.tmpl CONTRIBUTING.md -o CONTRIBUTING.html pandoc -f markdown-smart+autolink_bare_uris --template index.tmpl README.md -o README.html ``` After: ``` $ make make: Nothing to be done for 'all'. ```
% README
The plaintextaccounting.org website.
plaintextaccounting.org is an informative portal for Ledger, hledger, beancount, and the other ledger-likes.
The repo is named plaintextaccounting.github.io to make it the Github
Pages site for the
plaintextaccounting organization,
so that it can be served with a custom domain, plaintextaccounting.org.
Contributing Quick-start
For full instructions on contributing, see CONTRIBUTING.md.
- Fork this repository.
- Make changes to the
mdfiles,css, etc. Don't change thehtmlfiles. - Run
maketo regenerate thehtmlfiles. - Commit.
- Push to a branch on your fork.
- Submit a pull request.
Description
Languages
HTML
32.3%
Makefile
20.2%
CSS
16.4%
Lua
14.2%
Shell
9.9%
Other
7%